diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2020-11-30 15:35:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-30 15:35:47 +0100 |
| commit | 73b04d58ad030c9bde1ba06824a8916964b81daf (patch) | |
| tree | 13274ca4a617afeb797c67eeb17a05ee3c5f65f4 | |
| parent | 926d8212989583d3481d3d5d46e5efd63aa49a4c (diff) | |
| parent | a8ceb7e20bf08b48012567597b7805aadcec0e6c (diff) | |
Merge pull request #4613 from jellyfin/DLNAEventFix
[Fix] NotificationType was never set in dlna event manager
| -rw-r--r-- | Emby.Dlna/Eventing/DlnaEventManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Dlna/Eventing/DlnaEventManager.cs b/Emby.Dlna/Eventing/DlnaEventManager.cs index b6e45c50e..ff81e83b5 100644 --- a/Emby.Dlna/Eventing/DlnaEventManager.cs +++ b/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); |
