Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/bcb2a3d5e95a15de9ad41885ab27f68479473f19?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Don't check remote sources for trickplay

pull/12824/head
gnattu 5 months ago
parent 7c22a99e05
commit bcb2a3d5e9

@ -498,6 +498,11 @@ public class TrickplayManager : ITrickplayManager
var trickplayManifest = new Dictionary<string, Dictionary<int, TrickplayInfo>>();
foreach (var mediaSource in item.GetMediaSources(false))
{
if (mediaSource.IsRemote)
{
continue;
}
var mediaSourceId = Guid.Parse(mediaSource.Id);
var trickplayResolutions = await GetTrickplayResolutions(mediaSourceId).ConfigureAwait(false);

Loading…
Cancel
Save