From: Benjamin Auder <benjamin.auder@somewhere>
Date: Sun, 15 Mar 2020 14:41:19 +0000 (+0100)
Subject: Fix news notification system
X-Git-Url: https://git.auder.net/doc/html/css/scripts/%7B%7B%20asset('mixstore/index.css?a=commitdiff_plain;h=5c026d9a2c5546aa5b0d6882ae54cdb7bb36bdeb;p=vchess.git

Fix news notification system
---

diff --git a/server/routes/users.js b/server/routes/users.js
index 389625c1..fc29730c 100644
--- a/server/routes/users.js
+++ b/server/routes/users.js
@@ -41,9 +41,16 @@ router.get("/whoami", access.ajax, (req,res) => {
       email: user.email,
       id: user.id,
       notify: user.notify,
+      newsRead: user.newsRead
     });
   };
-  const anonymous = {name:"", email:"", id:0, notify:false};
+  const anonymous = {
+    name: "",
+    email: "",
+    id: 0,
+    notify: false,
+    newsRead: 0
+  };
   if (!req.cookies.token)
     callback(anonymous);
   else if (req.cookies.token.match(/^[a-z0-9]+$/))