1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

Fix initial messages not being received

This commit is contained in:
smoogipoo 2018-12-21 14:02:36 +09:00
parent 6b6629e9fd
commit 6a9b0a0ba3

View File

@ -133,6 +133,8 @@ namespace osu.Game.Online.Chat
if (channel == null) return;
channel.NewMessagesArrived += newMessages;
newMessages(channel.Messages);
}
private void newMessages(IEnumerable<Message> messages)