Compare commits

..

No commits in common. '84c9f53a8e9d389cd6b1c5a5277e2df2ccd0aefb' and '0f286760d611e83b4a5e555fe1c3f4056a919845' have entirely different histories.

  1. 13
      app/src/main/java/org/transdroid/daemon/adapters/qBittorrent/QBittorrentAdapter.java

13
app/src/main/java/org/transdroid/daemon/adapters/qBittorrent/QBittorrentAdapter.java

@ -890,20 +890,23 @@ public class QBittorrentAdapter implements IDaemonAdapter {
return TorrentStatus.Error; return TorrentStatus.Error;
case "downloading": case "downloading":
case "metaDL": case "metaDL":
case "stalledDL":
return TorrentStatus.Downloading; return TorrentStatus.Downloading;
case "uploading": case "uploading":
case "stalledUP":
return TorrentStatus.Seeding; return TorrentStatus.Seeding;
case "pausedDL": case "pausedDL":
return TorrentStatus.Paused;
case "pausedUP": case "pausedUP":
case "stoppedDL":
case "stoppedUP":
return TorrentStatus.Paused; return TorrentStatus.Paused;
case "checkingDL": case "stalledUP":
return TorrentStatus.Seeding;
case "stalledDL":
return TorrentStatus.Downloading;
case "checkingUP": case "checkingUP":
return TorrentStatus.Checking; return TorrentStatus.Checking;
case "checkingDL":
return TorrentStatus.Checking;
case "queuedDL": case "queuedDL":
return TorrentStatus.Queued;
case "queuedUP": case "queuedUP":
return TorrentStatus.Queued; return TorrentStatus.Queued;
} }

Loading…
Cancel
Save