Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
This commit is contained in:
commit
b588e8b60b
1 changed files with 1 additions and 4 deletions
|
@ -108,10 +108,7 @@ const tick = () => {
|
||||||
window.fetch(fetchEndpoint.value, {})
|
window.fetch(fetchEndpoint.value, {})
|
||||||
.then(res => res.json())
|
.then(res => res.json())
|
||||||
.then(feed => {
|
.then(feed => {
|
||||||
if (widgetProps.shuffle) {
|
rawItems.value = feed.items ?? [];
|
||||||
shuffle(feed.items);
|
|
||||||
}
|
|
||||||
rawItems.value = feed.items;
|
|
||||||
fetching.value = false;
|
fetching.value = false;
|
||||||
key++;
|
key++;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue