Skip to content

Commit

Permalink
修复自动跳过的错误
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuo894 committed Nov 2, 2024
1 parent 9c1c552 commit 9d8f515
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion UPDATE.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
订阅如果配置了备用RSS将在主页显示
修复自动跳过的错误
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ani.rss</groupId>
<artifactId>ani-rss</artifactId>
<version>1.1.172</version>
<version>1.1.173</version>

<properties>
<maven.compiler.source>11</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ani/rss/util/TorrentUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ public static List<File> getDownloadPath(Ani ani) {
if (!ReUtil.contains(regStr, name)) {
continue;
}
String s = ReUtil.get(regStr, name, 1);
String s = ReUtil.get(regStr, name, 2);
Integer sInt = Integer.parseInt(s);
if (!NumberUtil.equals(sInt, season)) {
continue;
Expand Down

0 comments on commit 9d8f515

Please sign in to comment.