瀏覽代碼

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
   // 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 {
     await _prefs.setBool("remoteFetchEnabled", !remoteFetchEnabled);
   }