Skip to content

Commit

Permalink
修复重命名包含 "/" 导致多级目录的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuo894 committed Nov 6, 2024
1 parent 1a00be2 commit 0a649e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ani/rss/util/ItemsUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ public static List<Item> getItems(Ani ani, String xml, Item newItem) {
}
return false;
}).collect(Collectors.toList());
return CollUtil.distinct(items, Item::getReName, true);
return CollUtil.distinct(items, item -> item.getEpisode().toString(), true);
}

/**
Expand Down

0 comments on commit 0a649e2

Please sign in to comment.