Use appropriate icon for "moving" torrents in transfer list

PR #19821.
This commit is contained in:
xavier2k6 2023-11-04 09:09:47 +00:00 committed by GitHub
parent 6b53c57157
commit 0186f44bf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View file

@ -1003,10 +1003,13 @@ window.qBittorrent.DynamicTable = (function() {
case "checkingUP":
case "queuedForChecking":
case "checkingResumeData":
case "moving":
state = "force-recheck";
img_path = "images/force-recheck.svg";
break;
case "moving":
state = "moving";
img_path = "images/set-location.svg";
break;
case "error":
case "unknown":
case "missingFiles":