diff --git a/Dalamud/IoC/Internal/ServiceContainer.cs b/Dalamud/IoC/Internal/ServiceContainer.cs
index 31d16e02e..6083f5a73 100644
--- a/Dalamud/IoC/Internal/ServiceContainer.cs
+++ b/Dalamud/IoC/Internal/ServiceContainer.cs
@@ -161,7 +161,7 @@ internal class ServiceContainer : IServiceProvider, IServiceType
public IServiceScope GetScope() => new ServiceScopeImpl(this);
///
- object? IServiceProvider.GetService(Type serviceType) => this.GetSingletonService(serviceType);
+ public object? GetService(Type serviceType) => this.GetSingletonService(serviceType).Result;
private async Task