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: 406b973654650cd09f619c14bbebb297275588f5
parent 89b916da288abff19cb82f3330a94e904992d63a
Author: Henry Jameson <me@hjkos.com>
Date:   Thu, 28 Nov 2024 18:09:42 +0200

don't fallback to first style if none specified

Diffstat:

Msrc/modules/interface.js3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/modules/interface.js b/src/modules/interface.js @@ -339,6 +339,9 @@ const interfaceMod = { let fetchFunc = index[result.nameUsed] // Fallbacks if (!fetchFunc) { + if (resource === 'style' || resource === 'palette') { + return result + } const newName = Object.keys(index)[0] fetchFunc = index[newName] console.warn(`${capitalizedResource} with id '${state.styleNameUsed}' not found, trying back to '${newName}'`)