Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/2dac07bc3fa130021372eca223ed81ef695ec914 You should set ROOT_URL correctly, otherwise the web may not work correctly.

add delay for remote buffering

pull/702/head
Luke Pulverenti 12 years ago
parent fafe56739f
commit 2dac07bc3f

@ -645,6 +645,18 @@ namespace MediaBrowser.Api.Playback
{
await Task.Delay(100).ConfigureAwait(false);
}
// Allow a small amount of time to buffer a little
if (state.Item is Video)
{
await Task.Delay(500).ConfigureAwait(false);
}
// This is arbitrary, but add a little buffer time when internet streaming
if (state.Item.LocationType == LocationType.Remote)
{
await Task.Delay(2000).ConfigureAwait(false);
}
}
/// <summary>

Loading…
Cancel
Save