fix exception error when header settings mismatch

This commit is contained in:
Daniel Kondrashevich 2022-02-15 17:49:59 -08:00
Родитель 0a9cd5119a
Коммит 1ff71b3ffc
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -14,6 +14,8 @@ namespace EasyAuthForK8s.Sample.Pages
}
public void OnGet(string? encoding, string? format, string? prefix)
{
try
{
if (!string.IsNullOrEmpty(encoding))
Encoding = encoding!;
if (!string.IsNullOrEmpty(format))
@ -38,6 +40,11 @@ namespace EasyAuthForK8s.Sample.Pages
}
Headers.AddRange(headers.ToList());
}
catch (Exception ex)
{
// Do nothing, just don't throw an exception.
}
}
public List<KeyValuePair<string, string>> Headers = new();
public string Encoding = "UrlEncode";