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 9ea5a3e00b90e..219aa7a64f4d2 100644 --- a/src/renderer/components/watch-video-comments/watch-video-comments.js +++ b/src/renderer/components/watch-video-comments/watch-video-comments.js @@ -81,6 +81,8 @@ export default defineComponent({ handleSortChange: function () { this.sortNewest = !this.sortNewest this.commentData = [] + // nextPageToken is reset to ensure first page is get + this.nextPageToken = null this.getCommentData() }, diff --git a/src/renderer/components/watch-video-playlist/watch-video-playlist.js b/src/renderer/components/watch-video-playlist/watch-video-playlist.js index 6839c27a97b02..1a178071ca152 100644 --- a/src/renderer/components/watch-video-playlist/watch-video-playlist.js +++ b/src/renderer/components/watch-video-playlist/watch-video-playlist.js @@ -317,7 +317,7 @@ export default defineComponent({ getPlaylistInformationInvidious: function () { this.isLoading = true - invidiousGetPlaylistInfo({ playlistId: this.playlistId }).then((result) => { + invidiousGetPlaylistInfo(this.playlistId).then((result) => { this.playlistTitle = result.title this.channelName = result.author this.channelId = result.authorId