Cosmetics
authorBenjamin Auder <benjamin.auder@somewhere>
Mon, 9 Mar 2020 18:11:10 +0000 (19:11 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Mon, 9 Mar 2020 18:11:10 +0000 (19:11 +0100)
server/models/User.js
server/routes/users.js

index 2984af4..9b3049b 100644 (file)
@@ -118,7 +118,7 @@ const UserModel =
   notify: function(user, message)
   {
     const subject = "vchess.club - notification";
-    const body = "Hello " + user.name + "!" + `
+    const body = "Hello " + user.name + " !" + `
 ` + message;
     sendEmail(params.mail.noreply, user.email, subject, body);
   },
index 2b38c37..4e51ee1 100644 (file)
@@ -90,7 +90,7 @@ function setAndSendLoginToken(subject, to, res)
   const token = genToken(params.token.length);
   UserModel.setLoginToken(token, to.id);
   const body =
-    "Hello " + to.name + "!" + `
+    "Hello " + to.name + " !" + `
 ` +
     "Access your account here: " +
     params.siteURL + "/#/authenticate/" + token + `