Skip to content

Commit 4e55c06

Browse files
authored
✏️ 修复拼写错误 (#738)
1 parent a4cefbc commit 4e55c06

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/pkg/config/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,11 +405,11 @@ export class SystemConfig {
405405
if (chrome.extension.inIncognitoContext) {
406406
// 如果是隐身窗口,主窗口设置为false,直接返回false
407407
// 主窗口和隐身窗口都是true的情况下才会返回true
408-
const [enableNormal, enableIncognite] = await Promise.all([
408+
const [enableNormal, enableIncognito] = await Promise.all([
409409
this._get<boolean>("enable_script", true),
410410
this._get<boolean>("enable_script_incognito", true),
411411
]);
412-
return enableNormal && enableIncognite;
412+
return enableNormal && enableIncognito;
413413
} else {
414414
return this._get<boolean>("enable_script", true);
415415
}

0 commit comments

Comments
 (0)