PDS Admin tool make it easier to moderate your PDS with labels
43
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixed overload match issue

authored by

Chris Greenacre and committed by tangled.org ea2f7ca0 d5aa8d03

+3 -3
+3 -3
src/mailer.ts
··· 92 92 `DID: ${did}`, 93 93 `PDS: ${pds}` 94 94 ]; 95 - const emailText = infoText.join("\n"); 95 + const text = infoText.join("\n"); 96 96 97 97 if (resend) { 98 98 await resend.emails.send({ 99 99 from: senderEmail, 100 100 to: emails, 101 101 subject, 102 - emailText, 102 + text, 103 103 }); 104 104 } else { 105 105 if (transporter) { ··· 107 107 from: senderEmail, 108 108 to: emails.join(", "), 109 109 subject, 110 - emailText, 110 + text, 111 111 }); 112 112 } else { 113 113 logger.error(