Skip to content

Commit

Permalink
fix wrong url for additional topics
Browse files Browse the repository at this point in the history
  • Loading branch information
pidoubleyou committed Sep 1, 2024
1 parent fab928f commit c2a4791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mServer/crawler/sender/ard/ArdCrawler.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ private Set<ArdFilmInfoDto> getTopicsEntries() throws ExecutionException, Interr
// temporary workaround for missing topics
private void addAdditionalTopics(Set<CrawlerUrlDTO> topics) {
for (String topicId : MISSING_TOPIC_IDS) {
topics.add(new CrawlerUrlDTO(String.format(ArdConstants.TOPICS_URL, topicId, ArdConstants.TOPIC_PAGE_SIZE)));
topics.add(new CrawlerUrlDTO(String.format(ArdConstants.TOPIC_URL, topicId, ArdConstants.TOPIC_PAGE_SIZE)));
}
}

Expand Down

0 comments on commit c2a4791

Please sign in to comment.