We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d320cca commit 96a57b8Copy full SHA for 96a57b8
src/components/FeedPage.vue
@@ -115,7 +115,7 @@ export default {
115
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
116
if (this.loading) return;
117
if (this.videos == null) return;
118
- if (this.videosCount % 100 != 0) return;
+ if (this.videosCount > 0 && this.videosCount % 100 != 0) return;
119
120
this.loading = true;
121
this.loadMoreVideos();
0 commit comments