mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Don't check remote sources for trickplay
This commit is contained in:
parent
7c22a99e05
commit
bcb2a3d5e9
@ -498,6 +498,11 @@ public class TrickplayManager : ITrickplayManager
|
|||||||
var trickplayManifest = new Dictionary<string, Dictionary<int, TrickplayInfo>>();
|
var trickplayManifest = new Dictionary<string, Dictionary<int, TrickplayInfo>>();
|
||||||
foreach (var mediaSource in item.GetMediaSources(false))
|
foreach (var mediaSource in item.GetMediaSources(false))
|
||||||
{
|
{
|
||||||
|
if (mediaSource.IsRemote)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
var mediaSourceId = Guid.Parse(mediaSource.Id);
|
var mediaSourceId = Guid.Parse(mediaSource.Id);
|
||||||
var trickplayResolutions = await GetTrickplayResolutions(mediaSourceId).ConfigureAwait(false);
|
var trickplayResolutions = await GetTrickplayResolutions(mediaSourceId).ConfigureAwait(false);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user