mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-25 10:45:41 +03:00
Fix items not updating when items count = 0
This commit is contained in:
parent
f67fdd5759
commit
97f7a066e2
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ function Timeline({
|
|||
(async () => {
|
||||
try {
|
||||
let { done, value } = await fetchItems(firstLoad);
|
||||
if (value?.length) {
|
||||
if (Array.isArray(value)) {
|
||||
if (boostsCarousel) {
|
||||
value = groupBoosts(value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue