Browse Source

Merge pull request #635 from bwitt/bitcomet-start-stop

Dont show stop button on Bitcomet
pull/648/head
Eric Kok 5 months ago committed by GitHub
parent
commit
20845caf8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/src/main/java/org/transdroid/daemon/Daemon.java

2
app/src/main/java/org/transdroid/daemon/Daemon.java

@ -337,7 +337,7 @@ public enum Daemon { @@ -337,7 +337,7 @@ public enum Daemon {
}
public static boolean supportsStoppingStarting(Daemon type) {
return type == uTorrent || type == rTorrent || type == BitTorrent || type == BitComet || type == Dummy;
return type == uTorrent || type == rTorrent || type == BitTorrent || type == Dummy;
}
public static boolean supportsForcedStarting(Daemon type) {

Loading…
Cancel
Save