logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/
commit: 098879be3edf95ab06b05a1f64af2a48b718d5c4
parent 41f5ae30f110c85a69c2f68ba1c0f24f1f9e550e
Author: Henry Jameson <me@hjkos.com>
Date:   Sun, 17 Nov 2024 15:57:32 +0200

fix cache being used even if no cache exists

Diffstat:

Msrc/modules/interface.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/modules/interface.js b/src/modules/interface.js @@ -344,7 +344,7 @@ const interfaceMod = { } = rootState.config const forceRecompile = forceThemeRecompilation || recompile - if (!forceRecompile && !themeDebug && tryLoadCache()) { + if (!forceRecompile && !themeDebug && await tryLoadCache()) { return commit('setThemeApplied') }