blob: 7e665f29716d188ed80f1d10d385efdf3cd5df94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
diff --git a/wowup-electron/app/app-updater.ts b/wowup-electron/app/app-updater.ts
index 6748bdee..a3b44ae6 100644
--- a/wowup-electron/app/app-updater.ts
+++ b/wowup-electron/app/app-updater.ts
@@ -18,12 +18,7 @@ class AppUpdater {
}
public async checkForUpdates(): Promise<void> {
- try {
- const result = await autoUpdater.checkForUpdates();
- log.info(`checkForUpdates`, result);
- } catch (e) {
- log.error("checkForUpdates", e);
- }
+ log.info('autoUpdater disabled for non-official builds');
}
private initIpcHandlers() {
|