소스 검색

Add Feature: system timelines will be showing any modification for duat startat endat receivedat, also notification to the watchers and if card is due, watchers will be notified

Sam X. Chen 5 년 전
부모
커밋
5ca09cdf09
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      server/notifications/email.js

+ 1 - 1
server/notifications/email.js

@@ -7,7 +7,7 @@ Meteor.startup(() => {
       if (quoteParams[key]) quoteParams[key] = `"${params[key]}"`;
     });
     ['timeValue', 'timeOldValue'].forEach(key => {
-      if (quoteParams[key]) quoteParams[key] = `${params[key]}`;
+      quoteParams[key] = quoteParams[key] ? `${params[key]}` : '';
     });
 
     const lan = user.getLanguage();