mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Return null IPC response for archive imports
This commit is contained in:
@ -18,6 +18,7 @@ namespace osu.Game.IPC
|
||||
: base(host)
|
||||
{
|
||||
this.importer = importer;
|
||||
|
||||
MessageReceived += msg =>
|
||||
{
|
||||
Debug.Assert(importer != null);
|
||||
@ -25,6 +26,8 @@ namespace osu.Game.IPC
|
||||
{
|
||||
if (t.Exception != null) throw t.Exception;
|
||||
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||
|
||||
return null;
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user