瀏覽代碼

Merge pull request #4613 from jellyfin/DLNAEventFix

[Fix] NotificationType was never set in dlna event manager
Claus Vium 4 年之前
父節點
當前提交
73b04d58ad
共有 1 個文件被更改,包括 2 次插入1 次删除
  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,
                 CallbackUrl = callbackUrl,
                 SubscriptionTime = DateTime.UtcNow,
-                TimeoutSeconds = timeout
+                TimeoutSeconds = timeout,
+                NotificationType = notificationType
             });
 
             return GetEventSubscriptionResponse(id, requestedTimeoutString, timeout);