Skip to content

Commit

Permalink
fix(noticeHandler): 고정 공지로 변경 실패 시 슬랙 알림 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
pp449 committed Jan 18, 2024
1 parent 2e78ab5 commit 21c55cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/db/data/noticeHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ const convertSpecificNoticeToPinnedNotice = async (
try {
await db.execute(query);
} catch (error) {
notificationToSlack(error.message + '\n 고정 공지로 변경 실패');
console.log(error.message + '고정 공지로 변경 실패');
// notificationToSlack(error.message + '\n 고정 공지로 변경 실패');
}
};

Expand Down

0 comments on commit 21c55cf

Please sign in to comment.