Remove excess new line from "Header:" download debug output

This commit is contained in:
Floris Bos 2022-11-20 17:47:54 +01:00
parent d600f36bc4
commit 2694f3976a

View file

@ -585,7 +585,7 @@ void DownloadThread::_header(const string &header)
{
_lastModified = curl_getdate(header.data()+15, NULL);
}
qDebug() << "Received header:" << header.c_str();
qDebug() << "Received header:" << QByteArray(header.c_str()).trimmed();
}
void DownloadThread::cancelDownload()