mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 09:32:24 +02:00
Make IgnoreDts configurable for M3U tuner
This commit is contained in:
parent
fdd728e9f8
commit
c3405d25fd
2 changed files with 4 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
|
|||
IsInfiniteStream = true,
|
||||
IsRemote = isRemote,
|
||||
|
||||
IgnoreDts = true,
|
||||
IgnoreDts = info.IgnoreDts,
|
||||
SupportsDirectPlay = supportsDirectPlay,
|
||||
SupportsDirectStream = supportsDirectStream,
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ namespace MediaBrowser.Model.LiveTv
|
|||
public TunerHostInfo()
|
||||
{
|
||||
AllowHWTranscoding = true;
|
||||
IgnoreDts = true;
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
|
@ -31,5 +32,7 @@ namespace MediaBrowser.Model.LiveTv
|
|||
public int TunerCount { get; set; }
|
||||
|
||||
public string UserAgent { get; set; }
|
||||
|
||||
public bool IgnoreDts { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue