Skip to content

Commit

Permalink
1.1.217
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuo894 committed Jan 2, 2025
1 parent dcbe433 commit 6c0b3d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion UPDATE.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
修复TMDB获取失败时无法添加订阅的问题
修复tr与aria重命名任务会失效的问题 #131
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.216</version>
<version>1.1.217</version>

<properties>
<maven.compiler.source>11</maven.compiler.source>
Expand Down
6 changes: 5 additions & 1 deletion src/main/java/ani/rss/util/TorrentUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,11 @@ public static synchronized Boolean login() {
log.warn("下载位置未设置");
return false;
}
return baseDownload.login(ConfigUtil.CONFIG);
try {
return baseDownload.login(ConfigUtil.CONFIG);
} catch (Exception e) {
return false;
}
}

/**
Expand Down

0 comments on commit 6c0b3d5

Please sign in to comment.