From a7d0097c57d9ab30f584b21e8f2250ae6cdef905 Mon Sep 17 00:00:00 2001 From: Shiny Nematoda Date: Mon, 22 Jul 2024 14:35:35 +0000 Subject: [PATCH] fix: album/singles continuation --- src/stores/results.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/results.js b/src/stores/results.js index 670d772..9d03dbe 100644 --- a/src/stores/results.js +++ b/src/stores/results.js @@ -118,7 +118,7 @@ export const useArtist = defineStore('artist', () => { for (let i in json.items) results.setItem(i, { items: json.items[i], - more: json.more[i] ? { ...json.more[i], ...{ id: e } } : null, + more: json.more[i], }); json.items = undefined;