1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-05 03:14:44 +00:00

Don't modify source URL when wait for download status

This commit is contained in:
Vladimir Golovnev (Glassez) 2020-06-19 12:16:31 +03:00
parent 1e86c76e8a
commit b4f65ca080
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7

View File

@ -401,8 +401,7 @@ void AutoDownloader::processJob(const QSharedPointer<ProcessingJob> &job)
}
else {
// waiting for torrent file downloading
// normalize URL string via QUrl since DownloadManager do it
m_waitingJobs.insert(QUrl(torrentURL).toString(), job);
m_waitingJobs.insert(torrentURL, job);
}
return;