Better feedback on button clicks

This commit is contained in:
Ian Gulliver
2021-06-11 16:40:37 +00:00
parent 55b2412a8a
commit ed011c5e6c
2 changed files with 3 additions and 3 deletions

View File

@@ -558,7 +558,7 @@ func (rm *room) sendAdminEvent(ae *adminEvent) {
}
func (rm *room) sendControlEvent(ce *controlEvent) {
for present, _ := range rm.present {
for present := range rm.present {
present <- ce
}
}