fix: fix rss-ticker TypeError

This commit is contained in:
tamaina 2023-01-09 15:41:06 +00:00
parent 4d39d1caf6
commit d64abedf9f
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ const tick = () => {
if (widgetProps.shuffle) {
shuffle(feed.items);
}
rawItems.value = feed.items;
rawItems.value = feed.items ?? [];
fetching.value = false;
key++;
});