Browse Source

The task id should be assigned from XML, not assumed to be the order number in the returned XML list.

The old code works only for BitComet v1.67 and earlier versions.
This fix is needed for BitComet v1.68 and later, and also compatible with old versions of BitComet.
pull/546/head
wxhere 4 years ago
parent
commit
e3e3359c12
  1. 4
      app/src/main/java/org/transdroid/daemon/BitComet/BitCometAdapter.java

4
app/src/main/java/org/transdroid/daemon/BitComet/BitCometAdapter.java

@ -610,8 +610,6 @@ public class BitCometAdapter implements IDaemonAdapter { @@ -610,8 +610,6 @@ public class BitCometAdapter implements IDaemonAdapter {
settings.getType()));
// @formatter:on
id++; // Stop/start/etc. requests are made by ID, which is the order number in the returned XML list :-S
} else if (next == XmlPullParser.START_TAG && tagName.equals("task")) {
// Start of a new 'transfer' item; reset gathered torrent data
@ -638,6 +636,8 @@ public class BitCometAdapter implements IDaemonAdapter { @@ -638,6 +636,8 @@ public class BitCometAdapter implements IDaemonAdapter {
if (next == XmlPullParser.TEXT) {
if (tagName.equals("name")) {
name = xpp.getText().trim();
} else if (tagName.equals("id")) {
id = Integer.parseInt(xpp.getText().trim());
} else if (tagName.equals("infohash")) {
hash = xpp.getText().trim();
} else if (tagName.equals("state")) {

Loading…
Cancel
Save