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: 4d472e1d4b13b45bd1b80756bd69fedce0c5b69b
parent 4f6673172303d84c7b757f6d34ae2f0abbaf7fcc
Author: Henry Jameson <me@hjkos.com>
Date:   Mon,  7 Oct 2024 12:21:36 +0300

fix my phone

Diffstat:

Msrc/modules/interface.js5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/modules/interface.js b/src/modules/interface.js @@ -627,7 +627,10 @@ export const normalizeThemeData = (input) => { // We got passed a full theme file themeData = input.theme themeSource = input.source - } else if (Object.prototype.hasOwnProperty.call(input, 'themeEngineVersion')) { + } else if ( + Object.prototype.hasOwnProperty.call(input, 'themeEngineVersion') || + Object.prototype.hasOwnProperty.call(input, 'bg') + ) { // We got passed a source/snapshot themeData = input themeSource = input