소스 검색

fix: sending empty report

poeti8 6 년 전
부모
커밋
206f31a0c2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      server/controllers/linkController.ts

+ 2 - 2
server/controllers/linkController.ts

@@ -376,8 +376,8 @@ export const reportLink: Handler = async (req, res) => {
     from: process.env.MAIL_USER,
     to: process.env.REPORT_MAIL,
     subject: "[REPORT]",
-    text: req.body.url,
-    html: req.body.url
+    text: req.body.link,
+    html: req.body.link
   });
   if (mail.accepted.length) {
     return res