1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 14:53:19 +08:00

Fix incorrect query in comment

This commit is contained in:
Dean Herbert
2022-01-20 18:36:20 +09:00
Unverified
parent 3ba712703b
commit b1cf3befa6
+1 -1
View File
@@ -714,7 +714,7 @@ namespace osu.Game.Screens.Select
beatmapSet = beatmapSet.Detach();
// This can be moved to the realm query if required using:
// .Filter("DeletePending == false && Protected == false && ALL Beatmaps.Hidden == false")
// .Filter("DeletePending == false && Protected == false && ANY Beatmaps.Hidden == false")
//
// As long as we are detaching though, it makes more sense to do it here as adding to the realm query has an overhead
// as seen at https://github.com/realm/realm-dotnet/discussions/2773#discussioncomment-2004275.