mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #13808 from vector-im/t3chguy/arrow-funcs-super
Fix manual update checking, super in arrow funcs doesn't work
This commit is contained in:
commit
29ff40eee5
@ -388,12 +388,12 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
||||
return Boolean(feedUrl);
|
||||
}
|
||||
|
||||
startUpdateCheck = () => {
|
||||
startUpdateCheck() {
|
||||
if (this.showUpdateCheck) return;
|
||||
super.startUpdateCheck();
|
||||
|
||||
ipcRenderer.send('check_updates');
|
||||
};
|
||||
}
|
||||
|
||||
installUpdate() {
|
||||
// IPC to the main process to install the update, since quitAndInstall
|
||||
|
@ -39,6 +39,13 @@ export default abstract class VectorBasePlatform extends BasePlatform {
|
||||
protected showUpdateCheck: boolean = false;
|
||||
protected _favicon: Favicon;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
this.startUpdateCheck = this.startUpdateCheck.bind(this);
|
||||
this.stopUpdateCheck = this.stopUpdateCheck.bind(this);
|
||||
}
|
||||
|
||||
async getConfig(): Promise<{}> {
|
||||
return getVectorConfig();
|
||||
}
|
||||
@ -96,21 +103,21 @@ export default abstract class VectorBasePlatform extends BasePlatform {
|
||||
return false;
|
||||
}
|
||||
|
||||
startUpdateCheck = () => {
|
||||
startUpdateCheck() {
|
||||
this.showUpdateCheck = true;
|
||||
dis.dispatch({
|
||||
action: 'check_updates',
|
||||
value: { status: updateCheckStatusEnum.CHECKING },
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
stopUpdateCheck = () => {
|
||||
stopUpdateCheck() {
|
||||
this.showUpdateCheck = false;
|
||||
dis.dispatch({
|
||||
action: 'check_updates',
|
||||
value: false,
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
getUpdateCheckStatusEnum() {
|
||||
return updateCheckStatusEnum;
|
||||
|
@ -154,7 +154,7 @@ export default class WebPlatform extends VectorBasePlatform {
|
||||
});
|
||||
};
|
||||
|
||||
startUpdateCheck = () => {
|
||||
startUpdateCheck() {
|
||||
if (this.showUpdateCheck) return;
|
||||
super.startUpdateCheck();
|
||||
this.pollForUpdate().then((updateState) => {
|
||||
@ -165,7 +165,7 @@ export default class WebPlatform extends VectorBasePlatform {
|
||||
value: updateState,
|
||||
});
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
installUpdate() {
|
||||
window.location.reload(true);
|
||||
|
Loading…
Reference in New Issue
Block a user