Skip to content

Commit

Permalink
优化tmdb标题获取
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuo894 committed Dec 15, 2024
1 parent 88843f8 commit 7eecc1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ani/rss/util/TmdbUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public synchronized static String getName(String name, String type) {
String themoviedbName;
try {
String finalName = name;
themoviedbName = HttpReq.get("https://api.themoviedb.org/3/search/" + type)
themoviedbName = HttpReq.get("https://api.themoviedb.org/3/search/" + type, true)
.form("query", URLUtil.encodeBlank(name))
.form("api_key", TMDB_API)
.form("language", tmdbLanguage)
Expand Down

0 comments on commit 7eecc1c

Please sign in to comment.