fix: correct logic in manga import review existence check
All checks were successful
ci/woodpecker/push/pipeline Pipeline was successful
ci/woodpecker/pr/pipeline Pipeline was successful

This commit is contained in:
Rodrigo Verdiani 2025-11-08 21:24:22 -03:00
parent c8dea4788b
commit 39de728e46

View File

@ -91,7 +91,7 @@ public class MangaCreationService {
}
private void createMangaImportReview(String title, String url, Provider provider) {
if (!mangaImportReviewRepository.existsByTitleIgnoreCaseAndUrlIgnoreCase(title, url)) {
if (mangaImportReviewRepository.existsByTitleIgnoreCaseAndUrlIgnoreCase(title, url)) {
return;
}