remove unneeded omdb image check
This commit is contained in:
parent
1bd63682ea
commit
41568ff2a4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user