1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 01:49:56 +08:00

Resolve "Redundant lambda signature parentheses"

This commit is contained in:
Craftplacer
2020-01-04 01:06:38 +01:00
Unverified
parent 7cc388b5ab
commit cd91cc860d
+1 -1
View File
@@ -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);
}