add screencast enabled bool to system init.

This commit is contained in:
Miroslav Šedivý 2021-07-14 14:23:51 +02:00
parent 257b642b94
commit 3227978725
2 changed files with 11 additions and 9 deletions

View File

@ -27,6 +27,7 @@ type SystemInit struct {
ScreenSize ScreenSize `json:"screen_size"`
Sessions map[string]SessionData `json:"sessions"`
ImplicitHosting bool `json:"implicit_hosting"`
ScreencastEnabled bool `json:"screencast_enabled"`
WebRTC SystemWebRTC `json:"webrtc"`
}

View File

@ -45,6 +45,7 @@ func (h *MessageHandlerCtx) systemInit(session types.Session) error {
},
Sessions: sessions,
ImplicitHosting: h.sessions.ImplicitHosting(),
ScreencastEnabled: h.capture.Screencast().Enabled(),
WebRTC: message.SystemWebRTC{
Videos: h.capture.VideoIDs(),
},