mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
let admin in if room locked
This commit is contained in:
parent
1e77a1afde
commit
14caa1fba8
@ -34,8 +34,11 @@ func (h *MessageHandler) Connected(id string, socket *WebSocket) (bool, string,
|
||||
}
|
||||
|
||||
if h.locked {
|
||||
h.logger.Debug().Msg("server locked")
|
||||
return false, "Server is currently locked", nil
|
||||
session, ok := h.sessions.Get(id)
|
||||
if !ok || !session.Admin() {
|
||||
h.logger.Debug().Msg("server locked")
|
||||
return false, "Server is currently locked", nil
|
||||
}
|
||||
}
|
||||
|
||||
return true, "", nil
|
||||
|
Loading…
Reference in New Issue
Block a user