Make IgnoreDts configurable for M3U tuner

This commit is contained in:
knackebrot
2022-06-13 00:51:08 +02:00
parent fdd728e9f8
commit c3405d25fd
2 changed files with 4 additions and 1 deletions

View File

@@ -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; }
}
}