Merge pull request #21550 from smoogipoo/ack-on-join

Immediately send ack request when joining new channels
This commit is contained in:
Dean Herbert 2022-12-07 14:51:10 +09:00 committed by GitHub
commit 720247294a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -529,6 +529,10 @@ namespace osu.Game.Online.Chat
{
Logger.Log($"Joined public channel {channel}");
joinChannel(channel, fetchInitialMessages);
// Required after joining public channels to mark the user as online in them.
// Todo: Temporary workaround for https://github.com/ppy/osu-web/issues/9602
SendAck();
};
req.Failure += e =>
{