소스 검색

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 });
 	}
 }