Skip to content

Commit a794821

Browse files
committed
Minor cleanup
1 parent c273e65 commit a794821

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src-main/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ if (!process.mas && !app.requestSingleInstanceLock()) {
77
}
88

99
const path = require('path');
10-
const openExternal = require('./open-external');
1110
const AbstractWindow = require('./windows/abstract');
1211
const EditorWindow = require('./windows/editor');
1312
const {checkForUpdates} = require('./update-checker');

src-main/migrate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const settings = require('./settings');
55
const MigrateWindow = require('./windows/migrate');
66
const {APP_NAME} = require('./brand');
77
const {translate} = require('./l10n');
8-
const safelyOpenExternal = require('./open-external');
8+
const openExternal = require('./open-external');
99
const packageJSON = require('../package.json');
1010

1111
// Avoid running migrate logic on fresh installs when we can. Not required, just helps
@@ -28,7 +28,7 @@ const writeCurrentVersion = async () => {
2828
};
2929

3030
const openUpdatePage = () => {
31-
safelyOpenExternal('https://desktop.turbowarp.org/');
31+
openExternal('https://desktop.turbowarp.org/');
3232
};
3333

3434
/**

0 commit comments

Comments
 (0)