mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Fix loading condition (fix #3940)
This commit is contained in:
parent
ed8d16b0e8
commit
b8e2d6d3ea
@ -253,7 +253,7 @@ export default Vue.extend({
|
||||
this.page++
|
||||
const cards = await this.getCards()
|
||||
this.cards.push(...cards)
|
||||
this.hasMorePage = cards.length === 0 || this.cards.length < this.folder.count
|
||||
this.hasMorePage = cards.length !== 0 || this.cards.length < this.folder.count
|
||||
} catch (error) {
|
||||
logError(error)
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user