remove broadcast from websocket.

This commit is contained in:
Miroslav Šedivý 2020-11-30 17:29:05 +01:00
parent def6248ca7
commit 994a91886d
4 changed files with 0 additions and 60 deletions

View file

@ -17,11 +17,6 @@ func (h *MessageHandlerCtx) SessionCreated(session types.Session) error {
if err := h.screenConfigurations(session); err != nil {
return err
}
// send broadcast status if admin
if err := h.boradcastStatus(session); err != nil {
return err
}
}
return nil