- Update queue when pausing a torrent

This commit is contained in:
Christophe Dumez 2008-08-02 19:49:37 +00:00
parent 48ec57604f
commit e27b08d970

View file

@ -761,6 +761,10 @@ bool bittorrent::pauseTorrent(QString hash) {
change = true;
// Save fast resume data
saveFastResumeAndRatioData(hash);
if(queueingEnabled) {
updateDownloadQueue();
updateUploadQueue();
}
qDebug("Torrent paused successfully");
emit pausedTorrent(hash);
}else{