mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 03:49:07 +00:00
Merge branch 'master' of github.com:KevinMidboe/seasoned
This commit is contained in:
@@ -71,8 +71,12 @@ export default {
|
||||
return undefined
|
||||
},
|
||||
isPlexAuthenticated: (state) => {
|
||||
let hasPlexId = state.settings['plex_userid']
|
||||
return hasPlexId != undefined
|
||||
const settings = state.settings || getLocalStorageByKey('settings')
|
||||
if (settings == null)
|
||||
return false
|
||||
|
||||
const hasPlexId = settings['plex_userid']
|
||||
return hasPlexId != null ? true : false
|
||||
}
|
||||
},
|
||||
mutations: {
|
||||
|
||||
Reference in New Issue
Block a user