fix: filter null nav items

This commit is contained in:
Barış Soner Uşaklı
2023-06-03 11:14:39 -04:00
parent 6aae88d5dd
commit b73f307abe

View File

@@ -65,7 +65,7 @@ admin.get = async function () {
} }
const ids = await db.getSortedSetRange('navigation:enabled', 0, -1); const ids = await db.getSortedSetRange('navigation:enabled', 0, -1);
const data = await db.getObjects(ids.map(id => `navigation:enabled:${id}`)); const data = await db.getObjects(ids.map(id => `navigation:enabled:${id}`));
cache = data.map((item) => { cache = data.filter(Boolean).map((item) => {
if (item.hasOwnProperty('groups')) { if (item.hasOwnProperty('groups')) {
try { try {
item.groups = JSON.parse(item.groups); item.groups = JSON.parse(item.groups);