Skip to content

Commit 2694f39

Browse files
committed
Remove excess new line from "Header:" download debug output
1 parent d600f36 commit 2694f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/downloadthread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ void DownloadThread::_header(const string &header)
585585
{
586586
_lastModified = curl_getdate(header.data()+15, NULL);
587587
}
588-
qDebug() << "Received header:" << header.c_str();
588+
qDebug() << "Received header:" << QByteArray(header.c_str()).trimmed();
589589
}
590590

591591
void DownloadThread::cancelDownload()

0 commit comments

Comments
 (0)