From f7c1a88166e4ba756f05db12db2c61865cfc6712 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 23 Jul 2015 13:58:20 -0400 Subject: update schedules direct --- MediaBrowser.Controller/LiveTv/IListingsProvider.cs | 2 +- MediaBrowser.Controller/LiveTv/ILiveTvManager.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Controller') diff --git a/MediaBrowser.Controller/LiveTv/IListingsProvider.cs b/MediaBrowser.Controller/LiveTv/IListingsProvider.cs index 54977c8d3c..5e43f1d27a 100644 --- a/MediaBrowser.Controller/LiveTv/IListingsProvider.cs +++ b/MediaBrowser.Controller/LiveTv/IListingsProvider.cs @@ -14,6 +14,6 @@ namespace MediaBrowser.Controller.LiveTv Task> GetProgramsAsync(ListingsProviderInfo info, string channelNumber, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken); Task AddMetadata(ListingsProviderInfo info, List channels, CancellationToken cancellationToken); Task Validate(ListingsProviderInfo info); - Task> GetLineups(ListingsProviderInfo info, string location); + Task> GetLineups(ListingsProviderInfo info, string country, string location); } } diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs index 3dbf9a9e90..a0deb34f0b 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs @@ -355,8 +355,9 @@ namespace MediaBrowser.Controller.LiveTv /// Gets the lineups. /// /// The provider identifier. + /// The country. /// The location. /// Task<List<NameIdPair>>. - Task> GetLineups(string providerId, string location); + Task> GetLineups(string providerId, string country, string location); } } -- cgit v1.2.3