Ensure information is actually updated

I'm assuming this is what was intended because otherwise there would be no reason to refresh information again after updating.
This commit is contained in:
awsr
2025-12-27 03:50:28 -08:00
parent 4bd9d20972
commit 214d84feea
+2 -2
View File
@@ -106,7 +106,7 @@ def check_updates(_id_task, disable_list, search_text, sort_column):
ext.check_updates()
if ext.can_update:
ext.git_fetch()
ext.read_info()
ext.read_info(True)
commit_date = ext.commit_date or 1577836800
shared.log.info(f'Extensions updated: {ext.name} {ext.commit_hash[:8]} {extensions.format_eztime(datetime.fromtimestamp(commit_date, timezone.utc), True)}')
else:
@@ -227,7 +227,7 @@ def update_extension(extension_path, search_text, sort_column):
ext.check_updates()
if ext.can_update:
ext.git_fetch()
ext.read_info()
ext.read_info(True)
commit_date = ext.commit_date or 1577836800
shared.log.info(f'Extensions updated: {ext.name} {ext.commit_hash[:8]} {extensions.format_eztime(datetime.fromtimestamp(commit_date, timezone.utc), True)}')
else: