remove status code from exception message

pull/4225/head
Gary Wilber 4 years ago
parent 3ca9b13f99
commit 722ec43e25

@ -160,7 +160,7 @@ namespace MediaBrowser.Providers.Manager
if (response.StatusCode != HttpStatusCode.OK) if (response.StatusCode != HttpStatusCode.OK)
{ {
throw new HttpException($"Invalid image received ({response.StatusCode}).") throw new HttpException("Invalid image received.")
{ {
StatusCode = response.StatusCode StatusCode = response.StatusCode
}; };

Loading…
Cancel
Save