Use Persistent Storage where possible
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
eb66d62f1a
commit
5cc0cef06c
|
@ -200,16 +200,6 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
||||||
|
|
||||||
this.startUpdateCheck = this.startUpdateCheck.bind(this);
|
this.startUpdateCheck = this.startUpdateCheck.bind(this);
|
||||||
this.stopUpdateCheck = this.stopUpdateCheck.bind(this);
|
this.stopUpdateCheck = this.stopUpdateCheck.bind(this);
|
||||||
|
|
||||||
this._tryPersistStorage();
|
|
||||||
}
|
|
||||||
|
|
||||||
async _tryPersistStorage() {
|
|
||||||
if (navigator.storage && navigator.storage.persist) {
|
|
||||||
const granted = await navigator.storage.persist();
|
|
||||||
const persisted = await navigator.storage.persisted();
|
|
||||||
console.log("Storage persist request granted: " + granted + " persisted: " + persisted);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async getConfig(): Promise<{}> {
|
async getConfig(): Promise<{}> {
|
||||||
|
|
Loading…
Reference in New Issue