From 9803e63e6f0c9a2a14f6427c9faafb629c5ef2ac Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 3 Dec 2021 14:30:15 +0900 Subject: [PATCH] Update IPC usage to return `null` --- osu.Game/IPC/ArchiveImportIPCChannel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/IPC/ArchiveImportIPCChannel.cs b/osu.Game/IPC/ArchiveImportIPCChannel.cs index d9d0e4c0ea..3ef1dc051d 100644 --- a/osu.Game/IPC/ArchiveImportIPCChannel.cs +++ b/osu.Game/IPC/ArchiveImportIPCChannel.cs @@ -25,6 +25,8 @@ public ArchiveImportIPCChannel(IIpcHost host, ICanAcceptFiles importer = null) { if (t.Exception != null) throw t.Exception; }, TaskContinuationOptions.OnlyOnFaulted); + + return null; }; }