We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d82649e commit e05ed14Copy full SHA for e05ed14
server/src/rss/service/rss.service.ts
@@ -238,7 +238,9 @@ export class RssService {
238
);
239
240
if (!rssUrl) {
241
- throw new NotFoundException('RSS 삭제 요청을 찾을 수 없습니다.');
+ throw new NotFoundException(
242
+ 'RSS 삭제 요청 인증 코드가 만료되었거나 찾을 수 없습니다.',
243
+ );
244
}
245
246
const rss = await this.rssAcceptRepository.findOne({
0 commit comments