mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Also exclude last read message
This commit is contained in:
@ -99,7 +99,7 @@ namespace osu.Game.Online.Chat
|
||||
foreach (var message in messages.OrderByDescending(m => m.Id))
|
||||
{
|
||||
// ignore messages that already have been read
|
||||
if (message.Id < channel.LastReadId)
|
||||
if (message.Id <= channel.LastReadId)
|
||||
return;
|
||||
|
||||
if (message.Sender.Id == localUser.Value.Id)
|
||||
|
Reference in New Issue
Block a user