Skip to content

Commit 1a6c5e8

Browse files
committed
Merge branch 'main' into develop
2 parents 995a271 + 50f4ab8 commit 1a6c5e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/davcatch/devcatch/repository/article/ArticleRepositoryCustomImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public List<ArticleResponse> findRelatedArticles(Long articleId, List<TagType> t
166166
.join(articleTag.tag, tag)
167167
.where(
168168
article.id.ne(articleId),
169-
tag.tagType.in(tagTypes).isNull()
169+
tag.tagType.in(tagTypes)
170170
)
171171
.orderBy(article.publishedAt.desc())
172172
.limit(RELATED_ARTICLE_SIZE)

0 commit comments

Comments
 (0)