Fix some null inspections

This commit is contained in:
Dean Herbert
2022-01-04 14:35:18 +09:00
parent 667cdb2475
commit 3811bd8520
9 changed files with 14 additions and 18 deletions

View File

@ -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)
{