From: Chocobozzz Date: Sun, 15 Apr 2018 07:29:53 +0000 (+0200) Subject: Don't add a dot after the url in forgot password email X-Git-Tag: v1.0.0-beta.4~67 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=37ddeba57f4c2aa85475fd3ef4498bb2802e1c7c;p=github%2FChocobozzz%2FPeerTube.git Don't add a dot after the url in forgot password email --- diff --git a/server/lib/emailer.ts b/server/lib/emailer.ts index d17749b9a..88a06cb79 100644 --- a/server/lib/emailer.ts +++ b/server/lib/emailer.ts @@ -75,7 +75,7 @@ class Emailer { addForgetPasswordEmailJob (to: string, resetPasswordUrl: string) { const text = `Hi dear user,\n\n` + `It seems you forgot your password on ${CONFIG.WEBSERVER.HOST}! ` + - `Please follow this link to reset it: ${resetPasswordUrl}.\n\n` + + `Please follow this link to reset it: ${resetPasswordUrl}\n\n` + `If you are not the person who initiated this request, please ignore this email.\n\n` + `Cheers,\n` + `PeerTube.`