mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +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 req = new MarkChannelAsReadRequest(channel, message);
|
||||
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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user