Skip to content

Commit

Permalink
Prowlarr 分页异常处理逻辑更新
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyPuppy514 committed Jan 14, 2024
1 parent 416af57 commit abcb99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/lckp/jproxy/filter/IndexerFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha
}
// 处理 Prowlarr 分页异常
if (count > indexerRequest.getLimit()) {
xml = XmlUtil.remove(xml, 99);
xml = XmlUtil.remove(xml, 100);
break;
}
// 更新参数
Expand Down

0 comments on commit abcb99d

Please sign in to comment.