Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop

This commit is contained in:
syuilo 2023-01-10 05:18:05 +09:00
commit b588e8b60b
1 changed files with 1 additions and 4 deletions

View File

@ -108,10 +108,7 @@ const tick = () => {
window.fetch(fetchEndpoint.value, {})
.then(res => res.json())
.then(feed => {
if (widgetProps.shuffle) {
shuffle(feed.items);
}
rawItems.value = feed.items;
rawItems.value = feed.items ?? [];
fetching.value = false;
key++;
});