1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 17:43:05 +08:00

Fix test crashing: NullReferenceException

This commit is contained in:
Shivam 2020-05-31 17:35:53 +02:00
parent ce360a960f
commit 33d731644c

View File

@ -81,7 +81,7 @@ namespace osu.Game.Tournament.Screens
}); });
sceneManager?.SetScreen(new StablePathSelectScreen()); sceneManager?.SetScreen(new StablePathSelectScreen());
}, },
Value = fileBasedIpc?.IPCStorage.GetFullPath(string.Empty) ?? "Not found", Value = fileBasedIpc?.IPCStorage?.GetFullPath(string.Empty) ?? "Not found",
Failing = fileBasedIpc?.IPCStorage == null, Failing = fileBasedIpc?.IPCStorage == null,
Description = "The osu!stable installation which is currently being used as a data source. If a source is not found, make sure you have created an empty ipc.txt in your stable cutting-edge installation." Description = "The osu!stable installation which is currently being used as a data source. If a source is not found, make sure you have created an empty ipc.txt in your stable cutting-edge installation."
}, },