Fixed favorites issues

This commit is contained in:
RemixDev 2022-03-05 13:36:08 +01:00
parent 59b2cb2e69
commit e0a8bc997e
1 changed files with 6 additions and 6 deletions

View File

@ -19,11 +19,11 @@ const setAllFavorites = data => {
isRefreshingFavorites.value = false isRefreshingFavorites.value = false
favoriteArtists.value = artists favoriteArtists.value = artists || []
favoriteAlbums.value = albums favoriteAlbums.value = albums || []
favoritePlaylists.value = playlists favoritePlaylists.value = playlists || []
favoriteTracks.value = tracks favoriteTracks.value = tracks || []
lovedTracksPlaylist.value = lovedTracks lovedTracksPlaylist.value = lovedTracks || []
} }
const setSpotifyPlaylists = response => { const setSpotifyPlaylists = response => {
@ -34,7 +34,7 @@ const setSpotifyPlaylists = response => {
return return
} }
favoriteSpotifyPlaylists.value = response favoriteSpotifyPlaylists.value = response || []
} }
const refreshFavorites = async ({ isInitial = false }) => { const refreshFavorites = async ({ isInitial = false }) => {