Browse Source

Merge pull request #4613 from jellyfin/DLNAEventFix

[Fix] NotificationType was never set in dlna event manager
Claus Vium 4 years ago
parent
commit
73b04d58ad
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Emby.Dlna/Eventing/DlnaEventManager.cs

+ 2 - 1
Emby.Dlna/Eventing/DlnaEventManager.cs

@@ -72,7 +72,8 @@ namespace Emby.Dlna.Eventing
                 Id = id,
                 Id = id,
                 CallbackUrl = callbackUrl,
                 CallbackUrl = callbackUrl,
                 SubscriptionTime = DateTime.UtcNow,
                 SubscriptionTime = DateTime.UtcNow,
-                TimeoutSeconds = timeout
+                TimeoutSeconds = timeout,
+                NotificationType = notificationType
             });
             });
 
 
             return GetEventSubscriptionResponse(id, requestedTimeoutString, timeout);
             return GetEventSubscriptionResponse(id, requestedTimeoutString, timeout);