Fix one more case of constructing connector directly

This commit is contained in:
Dan Balasescu 2022-11-02 15:22:46 +09:00
parent 2b04e852be
commit fe66b20702

View File

@ -49,7 +49,7 @@ namespace osu.Game.Tournament.Components
if (manager == null) if (manager == null)
{ {
AddInternal(manager = new ChannelManager(api, new WebSocketNotificationsClientConnector(api))); AddInternal(manager = new ChannelManager(api, api.GetNotificationsConnector()));
Channel.BindTo(manager.CurrentChannel); Channel.BindTo(manager.CurrentChannel);
} }