aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-26 23:46:06 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-26 23:46:06 -0400
commit943d5aa04ca6079accd383745e6b46cee8b9e19c (patch)
tree3d7ec2f5e89c13331dc156806845ae1f983f3f0a
parent6b31083e435b24e7a7accc4ba190940457e18477 (diff)
don't cache country response
-rw-r--r--MediaBrowser.Api/LiveTv/LiveTvService.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/MediaBrowser.Api/LiveTv/LiveTvService.cs b/MediaBrowser.Api/LiveTv/LiveTvService.cs
index d3a4558c8..a59b5f351 100644
--- a/MediaBrowser.Api/LiveTv/LiveTvService.cs
+++ b/MediaBrowser.Api/LiveTv/LiveTvService.cs
@@ -550,9 +550,7 @@ namespace MediaBrowser.Api.LiveTv
var response = await _httpClient.Get(new HttpRequestOptions
{
- Url = "https://json.schedulesdirect.org/20141201/available/countries",
- CacheLength = TimeSpan.FromDays(1),
- CacheMode = CacheMode.Unconditional
+ Url = "https://json.schedulesdirect.org/20141201/available/countries"
}).ConfigureAwait(false);