mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Resolve "Redundant lambda signature parentheses"
This commit is contained in:
@ -450,7 +450,7 @@ namespace osu.Game.Online.Chat
|
|||||||
var channel = JoinedChannels.First(c => c.Id == message.ChannelId);
|
var channel = JoinedChannels.First(c => c.Id == message.ChannelId);
|
||||||
var req = new MarkChannelAsReadRequest(channel, message);
|
var req = new MarkChannelAsReadRequest(channel, message);
|
||||||
req.Success += () => channel.LastReadId = message.Id;
|
req.Success += () => channel.LastReadId = message.Id;
|
||||||
req.Failure += (e) => Logger.Error(e, "Failed to mark channel as read");
|
req.Failure += e => Logger.Error(e, "Failed to mark channel as read");
|
||||||
api.Queue(req);
|
api.Queue(req);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user