Skip to content

Commit

Permalink
πŸ› fix: feedService blogName νƒ€μž… λ³€κ²½ 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
asn6878 authored Nov 20, 2024
1 parent a4998a3 commit ce8c83a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/feed/feed.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ export class FeedService {
case 'title':
qb.where('MATCH (feed.title) AGAINST (:find)', { find });
break;
case 'userName':
qb.where('MATCH (blog.userName) AGAINST (:find)', { find });
case 'blogName':
qb.where('MATCH (blog.name) AGAINST (:find)', { find });
break;
case 'all':
qb.where('MATCH (feed.title) AGAINST (:find)', { find }).orWhere(
Expand Down

0 comments on commit ce8c83a

Please sign in to comment.