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 {
|
if h.locked {
|
||||||
h.logger.Debug().Msg("server locked")
|
session, ok := h.sessions.Get(id)
|
||||||
return false, "Server is currently locked", nil
|
if !ok || !session.Admin() {
|
||||||
|
h.logger.Debug().Msg("server locked")
|
||||||
|
return false, "Server is currently locked", nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true, "", nil
|
return true, "", nil
|
||||||
|
Loading…
Reference in New Issue
Block a user