diff options
| author | Joe Rogers <1337joe@gmail.com> | 2021-11-18 07:42:04 +0100 |
|---|---|---|
| committer | Joe Rogers <1337joe@gmail.com> | 2021-11-18 07:42:04 +0100 |
| commit | 97124f5fcec4b1a1bf1f81bccaaa3282029c40e1 (patch) | |
| tree | 60f114682486f9848d0c303441908e17e5e970e3 | |
| parent | 7cf576794940973ef31772b8524ff3c4ff82d09c (diff) | |
Add missed override
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/LiveTvChannel.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs index 074e023e8..d01009a53 100644 --- a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs +++ b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs @@ -154,6 +154,11 @@ namespace MediaBrowser.Controller.LiveTv return new List<MediaStream>(); } + public override List<MediaStream> GetMediaStreams(MediaStreamType? type) + { + return new List<MediaStream>(); + } + protected override string GetInternalMetadataPath(string basePath) { return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N", CultureInfo.InvariantCulture), "metadata"); |
