Compare commits

...

2 Commits

Author SHA1 Message Date
rov
b237baa051 Merge pull request 'fix: correct logic in manga import review existence check' (#15) from feature/queue-mange-list-update into main
All checks were successful
ci/woodpecker/push/pipeline Pipeline was successful
Reviewed-on: #15
2025-11-08 21:32:42 -03:00
39de728e46 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
2025-11-08 21:24:22 -03:00

View File

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