mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 23:07:59 +00:00
- Fix "Append .!qB extension to incomplete files". The extension would stay under certain conditions
This commit is contained in:
parent
6ea97f09cf
commit
ab36a358b7
@ -1745,6 +1745,11 @@ void Bittorrent::addConsoleMessage(QString msg, QString) {
|
|||||||
QString hash = h.hash();
|
QString hash = h.hash();
|
||||||
// Remember finished state
|
// Remember finished state
|
||||||
TorrentPersistentData::saveSeedStatus(h);
|
TorrentPersistentData::saveSeedStatus(h);
|
||||||
|
#ifdef LIBTORRENT_0_15
|
||||||
|
// Remove .!qB extension if necessary
|
||||||
|
if(appendqBExtension)
|
||||||
|
appendqBextensionToTorrent(h, false);
|
||||||
|
#endif
|
||||||
// Move to download directory if necessary
|
// Move to download directory if necessary
|
||||||
if(!defaultTempPath.isEmpty()) {
|
if(!defaultTempPath.isEmpty()) {
|
||||||
// Check if directory is different
|
// Check if directory is different
|
||||||
|
Loading…
Reference in New Issue
Block a user