Skip to content

Commit

Permalink
3.3.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
c0re100 committed Aug 5, 2017
1 parent f1334cc commit 24b79ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Thu Aug 03 2017 - sledgehammer999 <[email protected]> - v3.3.15
- BUGFIX: Temporary subfolder wasn't being deleted. (glassez)

* Tue Jul 18 2017 - sledgehammer999 <[email protected]> - v3.3.14
- BUGFIX: Set interface for outgoing traffic(libtorrent 1.1.x series). (evsh)
- WEBUI: Fix KEEP_ALIVE_DURATION value (Chocobo1)
Expand Down
2 changes: 1 addition & 1 deletion src/base/bittorrent/torrenthandle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,7 @@ void TorrentHandle::handleStorageMovedAlert(libtorrent::storage_moved_alert *p)
}

qDebug("Torrent is successfully moved from %s to %s", qPrintable(m_oldPath), qPrintable(m_newPath));
if (m_oldPath == m_session->torrentTempPath(hash())) {
if (QDir(m_oldPath) == QDir(m_session->torrentTempPath(hash()))) {
qDebug() << "Removing torrent temp folder:" << m_oldPath;
Utils::Fs::smartRemoveEmptyFolderTree(m_oldPath);
}
Expand Down
2 changes: 1 addition & 1 deletion version.pri
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROJECT_NAME = qbittorrent
# Define version numbers here
VER_MAJOR = 3
VER_MINOR = 3
VER_BUGFIX = 14
VER_BUGFIX = 15
VER_BUILD = 1
VER_STATUS = # Should be empty for stable releases!

Expand Down

0 comments on commit 24b79ee

Please sign in to comment.