diff --git a/src/renderer/components/watch-video-comments/watch-video-comments.js b/src/renderer/components/watch-video-comments/watch-video-comments.js index b02b6278..04ccd2ea 100644 --- a/src/renderer/components/watch-video-comments/watch-video-comments.js +++ b/src/renderer/components/watch-video-comments/watch-video-comments.js @@ -191,7 +191,14 @@ export default Vue.extend({ this.showToast({ message: this.$t('Falling back to Invidious API') }) - this.getCommentDataInvidious() + this.getCommentDataInvidious({ + resource: 'comments', + id: this.id, + params: { + continuation: this.nextPageToken, + sort_by: this.sortNewest ? 'new' : 'top' + } + }) } else { this.isLoading = false } @@ -219,7 +226,14 @@ export default Vue.extend({ this.showToast({ message: this.$t('Falling back to Invidious API') }) - this.getCommentDataInvidious() + this.getCommentDataInvidious({ + resource: 'comments', + id: this.id, + params: { + continuation: this.nextPageToken, + sort_by: this.sortNewest ? 'new' : 'top' + } + }) } else { this.isLoading = false }