Update:Home screen server loading to not block local item access #708

This commit is contained in:
advplyr
2023-06-04 17:14:26 -05:00
parent d207e88e18
commit f3964dda17
5 changed files with 51 additions and 39 deletions
+4
View File
@@ -10,6 +10,7 @@ export const state = () => ({
playerIsFullscreen: false,
isCasting: false,
isCastAvailable: false,
attemptingConnection: false,
socketConnected: false,
networkConnected: false,
networkConnectionType: null,
@@ -113,6 +114,9 @@ export const mutations = {
setCastAvailable(state, available) {
state.isCastAvailable = available
},
setAttemptingConnection(state, val) {
state.attemptingConnection = val
},
setPlayerPlaying(state, val) {
state.playerIsPlaying = val
},