fix cache being used even if no cache exists
This commit is contained in:
parent
41f5ae30f1
commit
098879be3e
|
@ -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…
Reference in a new issue