diff --git a/src/components/FeedPage.vue b/src/components/FeedPage.vue index 5d4df58e..965d28dc 100644 --- a/src/components/FeedPage.vue +++ b/src/components/FeedPage.vue @@ -136,6 +136,7 @@ export default { } }, loadMoreVideos() { + if (!this.videosStore) return; this.currentVideoCount = Math.min(this.currentVideoCount + this.videoStep, this.videosStore.length); if (this.videos.length != this.videosStore.length) { this.videos = this.videosStore.slice(0, this.currentVideoCount);