mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-06-09 12:39:23 -03:00
The refresh_model_updates handler was calling record.has_update() with default hide_early_access=False, causing the toast to report early-access updates that the Updates filter (which uses the user's hide_early_access setting) would then hide. This resulted in misleading "Found N updates" toasts followed by an empty Updates view. Now the handler reads hide_early_access_updates from settings and passes it to has_update(), matching the behavior of _serialize_record and _annotate_update_flags.