Added getAvailableSpellCheckLanguages() method

This commit is contained in:
Šimon Brandner 2020-11-29 20:52:19 +01:00
parent 3419140bee
commit a8a422105b

View file

@ -496,6 +496,10 @@ export default class ElectronPlatform extends VectorBasePlatform {
}); });
} }
async getAvailableSpellCheckLanguages(): Promise<string[]> {
return this._ipcCall('getAvailableSpellCheckLanguages');
}
getSSOCallbackUrl(fragmentAfterLogin: string): URL { getSSOCallbackUrl(fragmentAfterLogin: string): URL {
const url = super.getSSOCallbackUrl(fragmentAfterLogin); const url = super.getSSOCallbackUrl(fragmentAfterLogin);
url.protocol = "element"; url.protocol = "element";