check for null values in handling (exception) content

This commit is contained in:
Hans De Mulder 2019-04-07 19:03:04 +02:00
Родитель ccd5b6bd04
Коммит ac4188e662
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -57,7 +57,7 @@ namespace Refit
exception.ContentHeaders = response.Content.Headers;
exception.Content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
if (response.Content.Headers.ContentType.MediaType.Equals("application/problem+json"))
if (response.Content.Headers?.ContentType?.MediaType?.Equals("application/problem+json") ?? false)
{
exception = await ValidationApiException.Create(exception).ConfigureAwait(false);
}