mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 02:33:33 +01:00
dlna fixes
This commit is contained in:
@@ -88,10 +88,10 @@ namespace MediaBrowser.Dlna.PlayTo
|
||||
if (_currentItem == null)
|
||||
return;
|
||||
|
||||
if (e.Stopped == false)
|
||||
if (e.State == TRANSPORTSTATE.STOPPED)
|
||||
await ReportProgress().ConfigureAwait(false);
|
||||
|
||||
else if (e.Stopped && _playbackStarted)
|
||||
else if (e.State == TRANSPORTSTATE.STOPPED && _playbackStarted)
|
||||
{
|
||||
_playbackStarted = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user