|
|
@ -294,12 +294,15 @@ namespace MediaBrowser.Dlna.PlayTo
|
|
|
|
|
|
|
|
|
|
|
|
await Task.Delay(50).ConfigureAwait(false);
|
|
|
|
await Task.Delay(50).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
|
|
// If it's already in a playing state, this will throw an error
|
|
|
|
try
|
|
|
|
// TODO: What if state is transitioning?
|
|
|
|
|
|
|
|
if (TransportState != TRANSPORTSTATE.PLAYING)
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
await SetPlay().ConfigureAwait(false);
|
|
|
|
await SetPlay().ConfigureAwait(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
catch
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Some devices will throw an error if you tell it to play when it's already playing
|
|
|
|
|
|
|
|
// Others won't
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RestartTimer();
|
|
|
|
RestartTimer();
|
|
|
|
}
|
|
|
|
}
|
|
|
|