fix mutes and blocks

This commit is contained in:
Henry Jameson 2026-08-14 19:10:57 +03:00
commit 869e7cfe0f
3 changed files with 19 additions and 22 deletions

View file

@ -98,12 +98,13 @@ const List = {
this.fetchFunction(this.page)
.then((result) => {
console.log(result)
this.loading = false
this.bottomedOut = isEmpty(result.items)
this.bottomedOut = isEmpty(result)
if (this.externalItems) return
this.page += 1
this.total = result.count
this.items.push(...result.items)
this.total = result.length
this.items.push(...result)
})
.catch((error) => {
this.loading = false