From 166430770e86be2f943ed721f1bd237c44617dfb Mon Sep 17 00:00:00 2001 From: Bnyro Date: Mon, 28 Nov 2022 14:53:13 +0100 Subject: [PATCH] add a format name and version number --- src/components/PlaylistsPage.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/PlaylistsPage.vue b/src/components/PlaylistsPage.vue index e00da943..dfc5ae02 100644 --- a/src/components/PlaylistsPage.vue +++ b/src/components/PlaylistsPage.vue @@ -130,6 +130,8 @@ export default { exportPlaylists() { if (!this.playlists) return; let json = { + format: "Piped", + version: 1, playlists: [], }; let playlistsSize = this.playlists.length;