Fix ArgumentOutOfRangeException when getting PostedPlaybackInfo

pull/5864/head
DeeJayBro 4 years ago
parent 4eeb69233d
commit 0ad62e7af9

@ -161,6 +161,11 @@ namespace Jellyfin.Api.Controllers
liveStreamId)
.ConfigureAwait(false);
if (info.ErrorCode != null)
{
return info;
}
if (profile != null)
{
// set device specific data

Loading…
Cancel
Save