ソースを参照

Enable remote fetch

Neeraj Gupta 1 年間 前
コミット
ee7c1bafc3
1 ファイル変更1 行追加1 行削除
  1. 1 1
      mobile/lib/utils/local_settings.dart

+ 1 - 1
mobile/lib/utils/local_settings.dart

@@ -86,7 +86,7 @@ class LocalSettings {
 
 
   //#region todo:(NG) remove this section, only needed for internal testing to see
   //#region todo:(NG) remove this section, only needed for internal testing to see
   // if the OS stops the app during indexing
   // if the OS stops the app during indexing
-  bool get remoteFetchEnabled => _prefs.getBool("remoteFetchEnabled") ?? false;
+  bool get remoteFetchEnabled => _prefs.getBool("remoteFetchEnabled") ?? true;
   Future<void> toggleRemoteFetch() async {
   Future<void> toggleRemoteFetch() async {
     await _prefs.setBool("remoteFetchEnabled", !remoteFetchEnabled);
     await _prefs.setBool("remoteFetchEnabled", !remoteFetchEnabled);
   }
   }