From 4acadd5c9ed8dd1b91ce867fe4016f50df4f687b Mon Sep 17 00:00:00 2001 From: Infi Date: Sun, 26 Feb 2023 15:16:03 +0100 Subject: [PATCH] Use GetNullable --- Dalamud/Plugin/DalamudPluginInterface.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/DalamudPluginInterface.cs b/Dalamud/Plugin/DalamudPluginInterface.cs index 38b98875f..be13f4507 100644 --- a/Dalamud/Plugin/DalamudPluginInterface.cs +++ b/Dalamud/Plugin/DalamudPluginInterface.cs @@ -201,7 +201,7 @@ public sealed class DalamudPluginInterface : IDisposable /// Returns false if the DalamudInterface was null. public bool OpenPluginInstaller() { - var dalamudInterface = Service.Get(); + var dalamudInterface = Service.GetNullable(); // Can be null during boot if (dalamudInterface == null) { return false;