Fix ali sort

pull/69/head
FongMi 3 years ago
parent c1c2cafb3e
commit 2f7216560a
  1. 2
      app/src/main/java/com/github/catvod/utils/Utils.java
  2. BIN
      jar/custom_spider.jar
  3. 2
      jar/custom_spider.jar.md5

@ -196,6 +196,8 @@ public class Utils {
try {
Matcher matcher = Pattern.compile(".*(1080|720|2160|4k|4K).*").matcher(text);
if (matcher.find()) text = matcher.group(1) + " " + text;
matcher = Pattern.compile("^([0-9]+)").matcher(text);
if (matcher.find()) text = matcher.group(1) + " " + text;
return text.replaceAll("\\D+", "");
} catch (Exception e) {
return "";

Binary file not shown.

@ -1 +1 @@
efad1ff3aa970692ffdb8dfd8b426193
b7edbdfee65700db639603bf47f3937f

Loading…
Cancel
Save