mirror of https://github.com/ppy/osu
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 @@ public class LegacyImportManager : Component
|
|||
[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