[bugfix] remove auto update for linux builds

This commit is contained in:
silentrald
2024-12-10 09:26:57 +08:00
parent 60c410671a
commit a47f17e766
4 changed files with 61 additions and 21 deletions
@@ -31,7 +31,7 @@ export class AutoUpdaterService {
this.ipcService = IpcService.getInstance();
}
public isUpdateAvailable(): Promise<boolean> {
public async isUpdateAvailable(): Promise<boolean> {
return lastValueFrom(this.ipcService.sendV2("check-update")).catch(() => false);
}