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!)!;