Browse Source

Make sure .unwanted parent is removed if empty (Closes #946826)

adaptive-webui-19844
Christophe Dumez 13 years ago
parent
commit
bcb29fb5fa
  1. 2
      src/qtlibtorrent/qbtsession.cpp

2
src/qtlibtorrent/qbtsession.cpp

@ -833,7 +833,7 @@ void QBtSession::deleteTorrent(const QString &hash, bool delete_local_files) { @@ -833,7 +833,7 @@ void QBtSession::deleteTorrent(const QString &hash, bool delete_local_files) {
QFile::remove(uneeded_file);
const QString parent_folder = misc::branchPath(uneeded_file);
qDebug("Attempt to remove parent folder (if empty): %s", qPrintable(parent_folder));
QDir().rmdir(parent_folder);
QDir().rmpath(parent_folder);
}
}
// Remove it from torrent backup directory

Loading…
Cancel
Save