remove unneeded omdb image check

This commit is contained in:
Luke Pulverenti 2016-01-15 14:15:32 -05:00
parent 53d8a7f674
commit 44d39d18c7
1 changed files with 3 additions and 13 deletions

View File

@ -51,25 +51,15 @@ namespace MediaBrowser.Providers.Omdb
return Task.FromResult<IEnumerable<RemoteImageInfo>>(list);
}
public async Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
{
var response = await _httpClient.GetResponse(new HttpRequestOptions
return _httpClient.GetResponse(new HttpRequestOptions
{
CancellationToken = cancellationToken,
Url = url,
ResourcePool = OmdbProvider.ResourcePool
}).ConfigureAwait(false);
if (response.ContentLength == 11059)
{
throw new HttpException("File not found")
{
StatusCode = HttpStatusCode.NotFound
};
}
return response;
});
}
public string Name