Handle deleted cached background

This commit is contained in:
Eduard Kuzmenko 2021-02-03 23:48:01 +02:00
parent 3d10a9159a
commit e3c1366d8d

View File

@ -171,6 +171,9 @@ export class AppImManager {
if(!isDefaultBackground) {
appDownloadManager.cacheStorage.getFile('background-image').then(blob => {
this.setBackground(URL.createObjectURL(blob), false);
}, () => { // * if NO_ENTRY_FOUND
this.setBackground('');
appStateManager.setByKey('settings.background', AppStateManager.STATE_INIT.settings.background); // * reset background
});
} else {
this.setBackground('');