Code: Select all
import { autoUpdater } from 'electron';
private _checkForUpdates = async () => {
let feedUrl = '';
...
...
try {
feedUrl = await this._getFeedUrl();
this.autoUpdater.setFeedURL({ url: feedUrl });
this.autoUpdater.checkForUpdates();
...
...
} catch (e) {
...
}
};