You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
627 B
14 lines
627 B
1 year ago
|
--- a/src/network/access/qhsts.cpp
|
||
|
+++ b/src/network/access/qhsts.cpp
|
||
|
@@ -364,8 +364,8 @@ quoted-pair = "\" CHAR
|
||
|
bool QHstsHeaderParser::parse(const QList<QPair<QByteArray, QByteArray>> &headers)
|
||
|
{
|
||
|
for (const auto &h : headers) {
|
||
|
- // We use '==' since header name was already 'trimmed' for us:
|
||
|
- if (h.first == "Strict-Transport-Security") {
|
||
|
+ // We compare directly because header name was already 'trimmed' for us:
|
||
|
+ if (h.first.compare("Strict-Transport-Security", Qt::CaseInsensitive) == 0) {
|
||
|
header = h.second;
|
||
|
// RFC6797, 8.1:
|
||
|
//
|