From ba16963b6652dcf53e81ba86c2913df9fe12a991 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 11 Oct 2025 22:25:54 +0200 Subject: [PATCH] forgot dependency injection error fix --- LightlessSync/Plugin.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/LightlessSync/Plugin.cs b/LightlessSync/Plugin.cs index 531522b..bd13bd9 100644 --- a/LightlessSync/Plugin.cs +++ b/LightlessSync/Plugin.cs @@ -114,6 +114,7 @@ public sealed class Plugin : IDalamudPlugin collection.AddSingleton(); collection.AddSingleton(); collection.AddSingleton(); + collection.AddSingleton(s => new Lazy(() => s.GetRequiredService())); collection.AddSingleton(); collection.AddSingleton(); collection.AddSingleton();