fix: spotify user detected as logged in when only spotify id is saved, causing favorites rendering errors; chore: removed logs

This commit is contained in:
Roberto Tonino
2021-06-02 16:25:55 +02:00
parent 58642b6d48
commit 923f5355ed
7 changed files with 15 additions and 23 deletions

View File

@@ -81,7 +81,7 @@ const getters = {
getClientMode: state => state.clientMode,
isLoggedIn: state => !!state.arl,
isLoggedWithSpotify: state => !!state.spotifyUser.id
isLoggedWithSpotify: state => !!state.spotifyUser.id && !!state.spotifyUser.name
}
const mutations = {