Sfoglia il codice sorgente

set `processInForeground` to `false` by default

Gildas 2 anni fa
parent
commit
e951565f61
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/core/bg/config.js

+ 1 - 1
src/core/bg/config.js

@@ -217,7 +217,7 @@ async function upgrade(ignoreOldProfiles) {
 		await configStorage.set({ maxParallelWorkers: navigator.hardwareConcurrency || 4 });
 	}
 	if (!config.processInForeground) {
-		await configStorage.set({ processInForeground: true });
+		await configStorage.set({ processInForeground: false });
 	}
 }