mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Improve statement readability
This commit is contained in:
@ -78,7 +78,7 @@ namespace osu.Game.Overlays.News.Sidebar
|
||||
|
||||
var allPosts = metadata.NewValue.NewsPosts;
|
||||
|
||||
if (!allPosts?.Any() ?? true)
|
||||
if (allPosts?.Any() != true)
|
||||
return;
|
||||
|
||||
var lookup = metadata.NewValue.NewsPosts.ToLookup(post => post.PublishedAt.Month);
|
||||
|
Reference in New Issue
Block a user