Skip to content

Commit 0d076c6

Browse files
authored
Prevent download-new-version popup within PB extension (#2044)
1 parent 992c44f commit 0d076c6

File tree

1 file changed

+7
-1
lines changed
  • platform.bible-extension/src

1 file changed

+7
-1
lines changed

platform.bible-extension/src/main.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,13 @@ function launchFwLiteWeb(context: ExecutionActivationContext) {
253253
const fwLiteProcess = context.elevatedPrivileges.createProcess.spawn(
254254
context.executionToken,
255255
binaryPath,
256-
['--urls', baseUrl, '--FwLiteWeb:OpenBrowser=false', '--FwLiteWeb:CorsAllowAny=true'],
256+
[
257+
'--urls',
258+
baseUrl,
259+
'--FwLite:UpdateCheckCondition=Never',
260+
'--FwLiteWeb:CorsAllowAny=true',
261+
'--FwLiteWeb:OpenBrowser=false',
262+
],
257263
// eslint-disable-next-line no-null/no-null
258264
{ stdio: [null, 'pipe', 'pipe'] },
259265
);

0 commit comments

Comments
 (0)