From 20507355eb045bc8337ca4697e3a8b906feb82be Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 27 Apr 2014 21:57:29 -0400 Subject: [PATCH] support sending nav commands --- MediaBrowser.Dlna/Ssdp/SsdpHandler.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.Dlna/Ssdp/SsdpHandler.cs b/MediaBrowser.Dlna/Ssdp/SsdpHandler.cs index ad7626f32a..14643f4683 100644 --- a/MediaBrowser.Dlna/Ssdp/SsdpHandler.cs +++ b/MediaBrowser.Dlna/Ssdp/SsdpHandler.cs @@ -372,17 +372,18 @@ namespace MediaBrowser.Dlna.Ssdp return; } + const int initialDelayMs = 3000; var intervalMs = _config.Configuration.DlnaOptions.BlastAliveMessageIntervalSeconds * 1000; lock (_notificationTimerSyncLock) { if (_notificationTimer == null) { - _notificationTimer = new Timer(state => NotifyAll(), null, intervalMs, intervalMs); + _notificationTimer = new Timer(state => NotifyAll(), null, initialDelayMs, intervalMs); } else { - _notificationTimer.Change(intervalMs, intervalMs); + _notificationTimer.Change(initialDelayMs, intervalMs); } } }