mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Fix some null inspections
This commit is contained in:
@ -42,7 +42,7 @@ namespace osu.Game.Rulesets.Edit.Checks
|
||||
|
||||
foreach (string filename in videoPaths)
|
||||
{
|
||||
string storagePath = beatmapSet.GetPathForFile(filename);
|
||||
string storagePath = beatmapSet?.GetPathForFile(filename);
|
||||
|
||||
if (storagePath == null)
|
||||
{
|
||||
|
Reference in New Issue
Block a user