1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 13:32:54 +08:00

Fix CI inspection

This commit is contained in:
Dan Balasescu 2023-12-15 17:41:22 +09:00
parent 6e7e243e70
commit 9e3b1dbb59
No known key found for this signature in database

View File

@ -46,6 +46,6 @@ namespace osu.Game.Overlays.Settings.Sections.Maintenance
}
private bool shouldUseParentDirectory(DirectoryInfo? info)
=> info?.Parent != null && (info?.Name == "Songs" || info?.Name == "Skins");
=> info?.Parent != null && (info.Name == "Songs" || info.Name == "Skins");
}
}