mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 00:33:09 -07:00
Suppress misleading warning message
QString::split() was giving a non-empty QStringList, and that caused Session::setBannedIPs() to emit misleading warning message.
This commit is contained in:
parent
bb80b378c1
commit
2729c0cb6d
2 changed files with 3 additions and 3 deletions
|
@ -473,8 +473,8 @@ Http::Response WebApplication::processRequest(const Http::Request &request, cons
|
|||
header(QLatin1String(Http::HEADER_CONTENT_SECURITY_POLICY), m_contentSecurityPolicy);
|
||||
|
||||
if (m_useCustomHTTPHeaders) {
|
||||
for (const CustomHTTPHeader &i : asConst(m_customHTTPHeaders))
|
||||
header(i.name, i.value);
|
||||
for (const CustomHTTPHeader &customHeader : asConst(m_customHTTPHeaders))
|
||||
header(customHeader.name, customHeader.value);
|
||||
}
|
||||
|
||||
return response();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue