Explorar el Código

set `processInForeground` to `false` by default

Gildas hace 2 años
padre
commit
e951565f61
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 });
 	}
 }