Merge pull request #466 from Reithan/bomalley/fix-reforge-detection

Check for forge as case insensitive to pick up reforge as well
ver22
hako-mikan 2025-10-07 22:03:47 +09:00 committed by GitHub
commit c60e6f3e23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import scripts.A1111.network as network
from modules import devices
from modules.ui import versions_html
forge = "forge" in versions_html()
forge = "forge" in versions_html().lower()
class QkvLinear(torch.nn.Linear):
pass