fix hdhr stream returning too quickly

This commit is contained in:
Luke Pulverenti
2017-11-06 16:32:44 -05:00
parent 5cb7469028
commit 83a43121af
8 changed files with 7 additions and 28 deletions

View File

@@ -51,11 +51,6 @@ namespace MediaBrowser.Controller.Entities.Audio
return 1;
}
public bool SupportsMediaSourceSelection()
{
return false;
}
[IgnoreDataMember]
public override bool SupportsPlayedStatus
{

View File

@@ -13,6 +13,5 @@ namespace MediaBrowser.Controller.Entities
/// <returns>Task{IEnumerable{MediaSourceInfo}}.</returns>
List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution);
List<MediaStream> GetMediaStreams();
bool SupportsMediaSourceSelection();
}
}

View File

@@ -109,11 +109,6 @@ namespace MediaBrowser.Controller.Entities
get { return true; }
}
public bool SupportsMediaSourceSelection()
{
return SourceType == SourceType.Library;
}
/// <summary>
/// Gets or sets the timestamp.
/// </summary>

View File

@@ -24,11 +24,6 @@ namespace MediaBrowser.Controller.LiveTv
return list;
}
public bool SupportsMediaSourceSelection()
{
return false;
}
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.LiveTvChannel;