aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/IListingsProvider.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-01 02:47:12 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-01 02:47:12 -0500
commit1d849e3f2549b46014e9f8b422399f00fc55add1 (patch)
treea2dfd855ce36c4aecc21d251e43f1b7f11e3e3c2 /MediaBrowser.Controller/LiveTv/IListingsProvider.cs
parentbdf4cc0afa5626a4d17abac5c19dfb6e66c398ad (diff)
update xmltv parsing
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/IListingsProvider.cs')
-rw-r--r--MediaBrowser.Controller/LiveTv/IListingsProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/IListingsProvider.cs b/MediaBrowser.Controller/LiveTv/IListingsProvider.cs
index 5ecd70cc5..3d610544e 100644
--- a/MediaBrowser.Controller/LiveTv/IListingsProvider.cs
+++ b/MediaBrowser.Controller/LiveTv/IListingsProvider.cs
@@ -11,7 +11,7 @@ namespace MediaBrowser.Controller.LiveTv
{
string Name { get; }
string Type { get; }
- Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelNumber, string channelName, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken);
+ Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, string channelNumber, string channelName, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken);
Task AddMetadata(ListingsProviderInfo info, List<ChannelInfo> channels, CancellationToken cancellationToken);
Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings);
Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location);