aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Service/BaseService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-04 14:51:26 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-04 14:51:26 -0400
commit983b51e0830ece26c1bd8445359fda14f0f99925 (patch)
treeee7db0ab4d28771a719402d65c86c16a931d0c96 /Emby.Dlna/Service/BaseService.cs
parenta5b82cd2ec9b03e949ab79791dc6c0469390c085 (diff)
reduce socket activity
Diffstat (limited to 'Emby.Dlna/Service/BaseService.cs')
-rw-r--r--Emby.Dlna/Service/BaseService.cs4
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)