mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Add tests for CurlHttpClient and fix the failures
This commit is contained in:
@@ -9,7 +9,7 @@ namespace NzbDrone.Common.Http
|
||||
{
|
||||
public class HttpHeader : Dictionary<string, object>
|
||||
{
|
||||
public HttpHeader(NameValueCollection headers)
|
||||
public HttpHeader(NameValueCollection headers) : base(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
foreach (var key in headers.AllKeys)
|
||||
{
|
||||
@@ -17,7 +17,7 @@ namespace NzbDrone.Common.Http
|
||||
}
|
||||
}
|
||||
|
||||
public HttpHeader()
|
||||
public HttpHeader() : base(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user