Skip to content
Snippets Groups Projects
Commit d64abedf authored by tamaina's avatar tamaina
Browse files

fix: fix rss-ticker TypeError

parent 4d39d1ca
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ const tick = () => {
if (widgetProps.shuffle) {
shuffle(feed.items);
}
rawItems.value = feed.items;
rawItems.value = feed.items ?? [];
fetching.value = false;
key++;
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment