pull/185/head
FongMi 2 years ago
parent af7f587006
commit 10c8f84186
  1. 2
      app/src/main/java/com/fongmi/android/tv/utils/Sniffer.java

@ -39,7 +39,7 @@ public class Sniffer {
}
public static boolean isTorrent(String url) {
return url.split(";")[0].endsWith(".torrent");
return !url.startsWith("magnet") && url.split(";")[0].endsWith(".torrent");
}
public static boolean isVideoFormat(String url) {

Loading…
Cancel
Save