Add:Last local media progress sync with server widget, Update:Remove local media progress with bad id

This commit is contained in:
advplyr 2022-07-13 19:17:34 -05:00
parent 9847ed9fcb
commit e7c913643a
5 changed files with 65 additions and 7 deletions

View file

@ -22,6 +22,9 @@ export const getters = {
getServerAddress: (state) => {
return state.serverConnectionConfig ? state.serverConnectionConfig.address : null
},
getServerConfigName: (state) => {
return state.serverConnectionConfig ? state.serverConnectionConfig.name : null
},
getCustomHeaders: (state) => {
return state.serverConnectionConfig ? state.serverConnectionConfig.customHeaders : null
},