mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-27 05:43:58 +02:00
Update:Home screen server loading to not block local item access #708
This commit is contained in:
@@ -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
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user