From 89806fc95a39d70540dcf08692a9241257efa80a Mon Sep 17 00:00:00 2001 From: Daniel Jakob Date: Mon, 16 May 2022 20:14:22 +0200 Subject: [PATCH] Update temporary playlist response --- src/App.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 549eaa9..c4fb007 100644 --- a/src/App.vue +++ b/src/App.vue @@ -104,14 +104,13 @@ export default defineComponent({ }, beforeMount(): void { let temporaryPlaylistId = this.$store.getters['authStorage/getTemporaryPlaylistId']; - console.log(temporaryPlaylistId) if (temporaryPlaylistId !== null) { HttpRequest.get( 'temporary_playlist/' + temporaryPlaylistId ).then((response: AxiosResponse) => { this.showPlayer() - let data = response.data.data; + let data = response.data; this.playlist = new PlaylistConfig( data.songs.map((song_raw: Object): SongListItemInterface => plainToClass(SongListItem, song_raw)),