Преглед изворни кода

set `processInForeground` to `false` by default

Gildas пре 2 година
родитељ
комит
e951565f61
1 измењених фајлова са 1 додато и 1 уклоњено
  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 });
 	}
 }