mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-29 16:04:21 +00:00
httpconnection: Make sure torrent file is written in binary mode
This commit is contained in:
parent
102e25771c
commit
9115a2ddc2
@ -402,6 +402,8 @@ void HttpConnection::respondCommand(const QString& command) {
|
|||||||
// it fails to load on Windows.
|
// it fails to load on Windows.
|
||||||
QTemporaryFile *tmpfile = new QTemporaryFile (QDir::temp().absoluteFilePath("qBT-XXXXXX.torrent"));
|
QTemporaryFile *tmpfile = new QTemporaryFile (QDir::temp().absoluteFilePath("qBT-XXXXXX.torrent"));
|
||||||
if (tmpfile->open()) {
|
if (tmpfile->open()) {
|
||||||
|
// Make sure we are writing in binary mode
|
||||||
|
tmpfile->setTextModeEnabled(false);
|
||||||
tmpfile->write(m_parser.torrent());
|
tmpfile->write(m_parser.torrent());
|
||||||
tmpfile->close();
|
tmpfile->close();
|
||||||
emit torrentReadyToBeDownloaded(tmpfile->fileName(), false, QString(), false);
|
emit torrentReadyToBeDownloaded(tmpfile->fileName(), false, QString(), false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user