mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 08:23:00 +08:00
Fix crash when attempting to import on mobile platforms
Regressed with NRT application to this file. It's probably the first time we've actually hit this due to an optional DI that is actually not available outside of tests.
This commit is contained in:
parent
87133b9cc5
commit
ddffa9b1bd
@ -42,7 +42,7 @@ namespace osu.Game.Database
|
||||
[Resolved]
|
||||
private RealmAccess realmAccess { get; set; } = null!;
|
||||
|
||||
[Resolved]
|
||||
[Resolved(canBeNull: true)] // canBeNull required while we remain on mono for mobile platforms.
|
||||
private DesktopGameHost? desktopGameHost { get; set; }
|
||||
|
||||
[Resolved]
|
||||
|
Loading…
Reference in New Issue
Block a user