try fix basic auth realm missing quote

Origin commit data
------------------
Commit: 576d6050ed
Author: Marc Szymkowiak <marc.szymkowiak91@googlemail.com>
Date: 2023-02-20 (Mon, 20 Feb 2023)
This commit is contained in:
Marc Szymkowiak
2023-02-20 19:47:47 +01:00
committed by vanhofen
parent a18f3cd19a
commit 92e91eea6b

View File

@@ -280,7 +280,7 @@ std::string CyhookHandler::BuildHeader(bool cache) {
switch (httpStatus) {
case HTTP_UNAUTHORIZED:
result += "WWW-Authenticate: Basic realm=\"";
result += AUTH_NAME_MSG "\r\n";
result += AUTH_NAME_MSG "\"\r\n";
break;
case HTTP_MOVED_TEMPORARILY: