diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-10 13:44:57 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-10 13:44:57 -0400 |
| commit | 23b88a69bfc7df88372048f448584098f2c9441b (patch) | |
| tree | 9a3ecc5f8c15e33da5950028574ec7ee81d144da | |
| parent | 1936d6db43e10cc6f45fa72fde4b1628e06b8abd (diff) | |
update comment
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs b/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs index 99bd5325e..4659459d3 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs +++ b/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs @@ -45,11 +45,11 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings.Emby public async Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location) { + // location = zip code var response = await GetResponse<LineupInfo[]>("https://data.emby.media/service/lineups?id=" + location).ConfigureAwait(false); return response.Select(i => new NameIdPair { - Name = GetName(i), Id = i.lineupID @@ -89,7 +89,6 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings.Emby { var path = await reader.ReadToEndAsync().ConfigureAwait(false); - // location = zip code using (var secondStream = await _httpClient.Get(new HttpRequestOptions { Url = "https://data.emby.media" + path |
