diff --git a/Emby.Server.Implementations/Services/ServiceController.cs b/Emby.Server.Implementations/Services/ServiceController.cs
index 3f9c8778b5..d546317a95 100644
--- a/Emby.Server.Implementations/Services/ServiceController.cs
+++ b/Emby.Server.Implementations/Services/ServiceController.cs
@@ -8,12 +8,17 @@ using Microsoft.Extensions.Logging;
namespace Emby.Server.Implementations.Services
{
public delegate object ActionInvokerFn(object intance, object request);
+
public delegate void VoidActionInvokerFn(object intance, object request);
public class ServiceController
{
private readonly ILogger _log;
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The logger.
public ServiceController(ILogger log)
{
_log = log;
@@ -30,7 +35,7 @@ namespace Emby.Server.Implementations.Services
public void RegisterService(HttpListenerHost appHost, Type serviceType)
{
// Make sure the provided type implements IService
- if (!serviceType.IsAssignableFrom(typeof(IService)))
+ if (!typeof(IService).IsAssignableFrom(serviceType))
{
_log.LogWarning("Tried to register a service that does not implement IService: {ServiceType}", serviceType);
return;