fix cache being used even if no cache exists
This commit is contained in:
parent
41f5ae30f1
commit
098879be3e
1 changed files with 1 additions and 1 deletions
|
|
@ -344,7 +344,7 @@ const interfaceMod = {
|
||||||
} = rootState.config
|
} = rootState.config
|
||||||
|
|
||||||
const forceRecompile = forceThemeRecompilation || recompile
|
const forceRecompile = forceThemeRecompilation || recompile
|
||||||
if (!forceRecompile && !themeDebug && tryLoadCache()) {
|
if (!forceRecompile && !themeDebug && await tryLoadCache()) {
|
||||||
return commit('setThemeApplied')
|
return commit('setThemeApplied')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue