Skip to content

Commit e05ed14

Browse files
committed
✨ feat: rss 인증 코드 만료 및 찾을 수 없는 조건 추가
1 parent d82649e commit e05ed14

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/src/rss/service/rss.service.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,9 @@ export class RssService {
238238
);
239239

240240
if (!rssUrl) {
241-
throw new NotFoundException('RSS 삭제 요청을 찾을 수 없습니다.');
241+
throw new NotFoundException(
242+
'RSS 삭제 요청 인증 코드가 만료되었거나 찾을 수 없습니다.',
243+
);
242244
}
243245

244246
const rss = await this.rssAcceptRepository.findOne({

0 commit comments

Comments
 (0)