Commit ec53a323 authored by Honfika's avatar Honfika

header compare fix

parent 6672cb60
......@@ -26,6 +26,11 @@ namespace Titanium.Web.Proxy.Http
return String.AsSpan().EqualsIgnoreCase(value);
}
internal bool Equals(string value)
{
return String.EqualsIgnoreCase(value);
}
public static implicit operator KnownHeader(string str) => new KnownHeader(str);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment