mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 16:53:08 -07:00
- Should fix the problem of finished torrents in download list (Thx heavyjoos)
This commit is contained in:
parent
7d8d4e7ee5
commit
4d6afaacfd
1 changed files with 3 additions and 2 deletions
|
@ -499,8 +499,9 @@ void GUI::updateDlList(bool force){
|
|||
switch(torrentStatus.state){
|
||||
case torrent_status::finished:
|
||||
case torrent_status::seeding:
|
||||
qDebug("Warning: this shouldn't happen, no finished torrents in download tab...");
|
||||
break;
|
||||
qDebug("Warning: this shouldn't happen, no finished torrents in download tab, moving it");
|
||||
finishedTorrent(h);
|
||||
continue;
|
||||
case torrent_status::checking_files:
|
||||
case torrent_status::queued_for_checking:
|
||||
DLListModel->setData(DLListModel->index(row, STATUS), QVariant(tr("Checking...", "i.e: Checking already downloaded parts...")));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue