mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-31 17:41:29 +00:00
support sending nav commands
This commit is contained in:
parent
c3378d2329
commit
20507355eb
1 changed files with 3 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue