From 4991f4e8fceaf60f97392e3e5f256b6c4d041e3f Mon Sep 17 00:00:00 2001 From: robertkleinschuster Date: Wed, 31 May 2023 18:31:40 +0200 Subject: [PATCH] fix playlist videos not updating --- src/components/PlaylistPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PlaylistPage.vue b/src/components/PlaylistPage.vue index 6c4e0094..b2ea2361 100644 --- a/src/components/PlaylistPage.vue +++ b/src/components/PlaylistPage.vue @@ -84,7 +84,6 @@ export default { }, }, mounted() { - this.getPlaylistData(); const playlistId = this.$route.query.list; if (this.authenticated && playlistId?.length == 36) this.fetchJson(this.authApiUrl() + "/user/playlists", null, { @@ -98,6 +97,7 @@ export default { this.isPlaylistBookmarked(); }, activated() { + this.getPlaylistData(); window.addEventListener("scroll", this.handleScroll); if (this.playlist) this.updateTitle(); },