Merge pull request #15233 from light-and-ray/featch_only_active_branch_updates_for_extensions

featch only active branch updates for extensions
This commit is contained in:
AUTOMATIC1111 2024-03-16 09:06:33 +03:00 committed by GitHub
commit 1282bceeba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -156,6 +156,8 @@ class Extension:
def check_updates(self):
repo = Repo(self.path)
for fetch in repo.remote().fetch(dry_run=True):
if self.branch and fetch.name != f'{repo.remote().name}/{self.branch}':
continue
if fetch.flags != fetch.HEAD_UPTODATE:
self.can_update = True
self.status = "new commits"