fixed white screen on startup

This commit is contained in:
antelle 2017-12-03 01:04:04 +01:00
parent abd8f6d20a
commit 9ee1080240
2 changed files with 9 additions and 4 deletions

View File

@ -66,10 +66,12 @@ const PluginGallery = {
getCachedGallery() {
const ts = this.logger.ts();
return SettingsStore.load('plugin-gallery').then(data => {
return this.verifySignature(data).then(gallery => {
this.logger.debug(`Loaded cached plugin gallery`, this.logger.ts(ts));
return gallery;
});
if (data) {
return this.verifySignature(data).then(gallery => {
this.logger.debug(`Loaded cached plugin gallery`, this.logger.ts(ts));
return gallery;
});
}
});
},

View File

@ -1,5 +1,8 @@
Release notes
-------------
##### v1.6.0 (2017-12-03)
`-` fixed white screen on startup
##### v1.6.0 (2017-12-02)
`+` desktop apps integrity protection
`+` auto-lock on computer lock