diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-04 14:51:26 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-10-04 14:51:26 -0400 |
| commit | 983b51e0830ece26c1bd8445359fda14f0f99925 (patch) | |
| tree | ee7db0ab4d28771a719402d65c86c16a931d0c96 /Emby.Dlna/Service/BaseService.cs | |
| parent | a5b82cd2ec9b03e949ab79791dc6c0469390c085 (diff) | |
reduce socket activity
Diffstat (limited to 'Emby.Dlna/Service/BaseService.cs')
| -rw-r--r-- | Emby.Dlna/Service/BaseService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Dlna/Service/BaseService.cs b/Emby.Dlna/Service/BaseService.cs index ddc37da09..bc7f01d97 100644 --- a/Emby.Dlna/Service/BaseService.cs +++ b/Emby.Dlna/Service/BaseService.cs @@ -24,9 +24,9 @@ namespace Emby.Dlna.Service return EventManager.CancelEventSubscription(subscriptionId); } - public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string timeoutString) + public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string timeoutString, string callbackUrl) { - return EventManager.RenewEventSubscription(subscriptionId, timeoutString); + return EventManager.RenewEventSubscription(subscriptionId, notificationType, timeoutString, callbackUrl); } public EventSubscriptionResponse CreateEventSubscription(string notificationType, string timeoutString, string callbackUrl) |
