Skip to content

Commit

Permalink
1.1.218
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuo894 committed Jan 7, 2025
1 parent 511800c commit 3d62ec6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion UPDATE.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
修复tr与aria重命名任务会失效的问题 #131
修复无法匹配tmdb某些nfsw标题的问题

fix #132
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.217</version>
<version>1.1.218</version>

<properties>
<maven.compiler.source>11</maven.compiler.source>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/ani/rss/util/TmdbUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public static Tmdb getTmdb(String titleName, String type) {
return HttpReq.get("https://api.themoviedb.org/3/search/" + type, true)
.form("query", URLUtil.encodeBlank(titleName))
.form("api_key", TMDB_API)
.form("include_adult", "true")
.form("language", tmdbLanguage)
.thenFunction(res -> {
Assert.isTrue(res.isOk(), "status: {}", res.getStatus());
Expand Down

0 comments on commit 3d62ec6

Please sign in to comment.