From 63e747fa3ea79fbe939a77e4cb3f6d606da7d4ce Mon Sep 17 00:00:00 2001 From: NBA2K1 <78034913+NBA2K1@users.noreply.github.com> Date: Mon, 13 Apr 2026 21:04:48 +0200 Subject: [PATCH] watch -> read --- lib/modules/more/about/providers/check_for_update.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/more/about/providers/check_for_update.dart b/lib/modules/more/about/providers/check_for_update.dart index 099b0086..1f80d49d 100644 --- a/lib/modules/more/about/providers/check_for_update.dart +++ b/lib/modules/more/about/providers/check_for_update.dart @@ -21,7 +21,7 @@ Future checkForUpdate( bool? manualUpdate, }) async { manualUpdate = manualUpdate ?? false; - final checkForUpdates = ref.watch(checkForAppUpdatesProvider); + final checkForUpdates = ref.read(checkForAppUpdatesProvider); if (!checkForUpdates && !manualUpdate) return; final l10n = l10nLocalizations(context!)!;