diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-10 15:09:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-10 15:09:10 -0400 |
| commit | 1e9292c4543381338df3d0135f326801f0daf2b4 (patch) | |
| tree | 2c5468b7f075863c2821b2cb0584dddc288ba168 /MediaBrowser.Controller | |
| parent | 4f6fb1a76ea3f6f088ce5d524c398b746977dea1 (diff) | |
update tv
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs index 8898753837..e568b2eae3 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs @@ -357,10 +357,11 @@ namespace MediaBrowser.Controller.LiveTv /// <summary> /// Gets the lineups. /// </summary> + /// <param name="providerType">Type of the provider.</param> /// <param name="providerId">The provider identifier.</param> /// <param name="country">The country.</param> /// <param name="location">The location.</param> /// <returns>Task<List<NameIdPair>>.</returns> - Task<List<NameIdPair>> GetLineups(string providerId, string country, string location); + Task<List<NameIdPair>> GetLineups(string providerType, string providerId, string country, string location); } } |
