mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-08 08:32:31 -06:00
BUGFIX: Fix "Append .!qB extension to complete files" (libtorrent v0.15)
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
* Unreleased - Christophe Dumez <chris@qbittorrent.org> - v2.1.3
|
||||||
|
- BUGFIX: Fix "Append .!qB extension to complete files" (libtorrent v0.15)
|
||||||
|
|
||||||
* Sun Jan 24 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.1.2
|
* Sun Jan 24 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.1.2
|
||||||
- FEATURE: Added back file prioritizing in a torrent
|
- FEATURE: Added back file prioritizing in a torrent
|
||||||
- BUGFIX: Fix issue causing torrents not to be displayed in the list
|
- BUGFIX: Fix issue causing torrents not to be displayed in the list
|
||||||
|
|||||||
@@ -1711,6 +1711,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
|
||||||
|
|||||||
Reference in New Issue
Block a user