From 64d6d9b7ffecdbbe772d123b86300ece1ea38c53 Mon Sep 17 00:00:00 2001 From: Emma Date: Wed, 18 Jan 2023 19:49:56 -0500 Subject: [PATCH] Correct argument on `invidiousGetPlaylistInfo` (#3089) `invidiousGetPlaylistInfo` expects a `string`. --- src/renderer/views/Playlist/Playlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/views/Playlist/Playlist.js b/src/renderer/views/Playlist/Playlist.js index 65e4445b4..8551c4f27 100644 --- a/src/renderer/views/Playlist/Playlist.js +++ b/src/renderer/views/Playlist/Playlist.js @@ -124,7 +124,7 @@ export default defineComponent({ getPlaylistInvidious: function () { this.isLoading = true - invidiousGetPlaylistInfo({ playlistId: this.playlistId }).then((result) => { + invidiousGetPlaylistInfo(this.playlistId).then((result) => { this.infoData = { id: result.playlistId, title: result.title,