mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 20:44:15 +00:00
- Fix removal of !.qB extension when files get completed
This commit is contained in:
parent
6965448a24
commit
885a7f592e
@ -1657,10 +1657,10 @@ void Bittorrent::readAlerts() {
|
||||
else if (file_completed_alert* p = dynamic_cast<file_completed_alert*>(a.get())) {
|
||||
QTorrentHandle h(p->handle);
|
||||
if(appendqBExtension) {
|
||||
QString name = h.file_at(p->index);
|
||||
QString name = misc::toQString(h.get_torrent_info().file_at(p->index).path.string());
|
||||
if(name.endsWith(".!qB")) {
|
||||
qDebug("File %s finished, removing .!qB extension", name.toLocal8Bit().data());
|
||||
name.chop(4);
|
||||
qDebug("Renaming %s to %s", (name+".!qB").toLocal8Bit().data(), name.toLocal8Bit().data());
|
||||
h.rename_file(p->index, name);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user