Removed pointless caching of common.json.
This commit is contained in:
parent
00ddabe46a
commit
bc6532cfc5
1 changed files with 5 additions and 13 deletions
|
@ -46,13 +46,6 @@ const Umi = { UI: {} };
|
|||
lo.setMessage('Loading environment...');
|
||||
try {
|
||||
window.futami = await FutamiCommon.load();
|
||||
localStorage.setItem('mami:common', JSON.stringify(window.futami));
|
||||
} catch(ex) {
|
||||
try {
|
||||
const cached = JSON.parse(localStorage.getItem('mami:common'));
|
||||
if(cached === null)
|
||||
throw 'Cached data is null.';
|
||||
window.futami = new FutamiCommon(cached);
|
||||
} catch(ex) {
|
||||
console.error(ex);
|
||||
lo.setIcon('cross');
|
||||
|
@ -60,7 +53,6 @@ const Umi = { UI: {} };
|
|||
lo.setMessage('Failed to load common settings!');
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
lo.setMessage('Fetching credentials...');
|
||||
|
|
Loading…
Reference in a new issue