fix: upgrade script to handle strings as well

isekai-main
Barış Soner Uşaklı 3 years ago
parent 32cbf760f6
commit e332acf3f7

@ -18,7 +18,7 @@ module.exports = {
} }
delete navItem.properties; delete navItem.properties;
} }
if (navItem.hasOwnProperty('groups') && Array.isArray(navItem.groups)) { if (navItem.hasOwnProperty('groups') && (Array.isArray(navItem.groups) || typeof navItem.groups === 'string')) {
navItem.groups = JSON.stringify(navItem.groups); navItem.groups = JSON.stringify(navItem.groups);
} }
bulkSet.push([`navigation:enabled:${item.score}`, navItem]); bulkSet.push([`navigation:enabled:${item.score}`, navItem]);

Loading…
Cancel
Save