Correct argument on invidiousGetPlaylistInfo (#3089)

`invidiousGetPlaylistInfo` expects a `string`.
This commit is contained in:
Emma
2023-01-19 08:49:56 +08:00
committed by GitHub
parent 41687aa185
commit 64d6d9b7ff
+1 -1
View File
@@ -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,