Merge branch 'develop' of ssh://git.pleroma.social/pleroma/pleroma-fe into instance-migration

This commit is contained in:
Henry Jameson 2026-02-10 19:01:51 +02:00
commit b2011429c6

View file

@ -107,6 +107,12 @@ const adminSettingsStorage = {
if (Array.isArray(value) && value.length > 0 && value[0].tuple) {
if (!preserveTuples) {
return value.reduce((acc, c) => {
if (c.tuple == null) {
return {
...acc,
[c]: c,
}
}
return {
...acc,
[c.tuple[0]]: convert(c.tuple[1], preserveTuplesLv2),