From 214d84feeade8bd918c567b315e10f4a55b2a63d Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Sat, 27 Dec 2025 03:50:28 -0800 Subject: [PATCH] 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. --- modules/ui_extensions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui_extensions.py b/modules/ui_extensions.py index 41126b207..3cd79d4be 100644 --- a/modules/ui_extensions.py +++ b/modules/ui_extensions.py @@ -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: