Switch standalone bracket display to highlight current match without connectors, rather than saved match with connectors.

This commit is contained in:
Patrick Fairbank
2022-09-29 18:58:47 -07:00
parent 9914768c1d
commit 1165e71503
6 changed files with 163 additions and 158 deletions

View File

@@ -49,5 +49,5 @@ func (web *Web) bracketDisplayWebsocketHandler(w http.ResponseWriter, r *http.Re
defer ws.Close()
// Subscribe the websocket to the notifiers whose messages will be passed on to the client.
ws.HandleNotifiers(display.Notifier, web.arena.ScorePostedNotifier, web.arena.ReloadDisplaysNotifier)
ws.HandleNotifiers(display.Notifier, web.arena.MatchLoadNotifier, web.arena.ReloadDisplaysNotifier)
}