fix: updated plex_userid to camelcase

This commit is contained in:
2022-08-19 10:49:16 +02:00
parent 74d5868a5c
commit 2fed03a882
5 changed files with 11 additions and 11 deletions

View File

@@ -59,9 +59,9 @@ export default {
// loggedIn: state => true,
loggedIn: state => state && state.username !== null,
admin: state => state.admin,
plexId: state => {
if (state && state.settings && state.settings.plex_userid)
return state.settings.plex_userid;
plexUserId: state => {
if (state && state.settings && state.settings.plexUserId)
return state.settings.plexUserId;
return null;
}
},