From cbfcea070dbafca1849dd4dcda7ba5ebba97157b Mon Sep 17 00:00:00 2001 From: "Glitch (hello-express)" Date: Tue, 5 Nov 2019 08:54:58 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=F0=9F=92=AA=20Checkpoint=20./serve?= =?UTF-8?q?r.js:933874/20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 66dd2db..4b1758c 100644 --- a/server.js +++ b/server.js @@ -27,7 +27,7 @@ app.get("/", (req, res) => { app.get("/img", (req, res) => { if (fuzIsOpen && new Date() - closingTimeout < lastSeen) { - return res.sendFile(__dirname + "/views/open.svg"); // https://www.flaticon.com/free-icon/open_1234189, maybe try https://flaticons.net/customize.php?dir=Miscellaneous&icon=Open.png + return res.sendFile(__dirname + "/views/open.svg"); // https://www.flaticon.com/free-icon/open_1234189, maybe try https://flaticons.net/customize.php?dir=Miscellaneous&icon=Open.png without attribution } res.sendFile(__dirname + "/views/closed.svg"); // https://www.flaticon.com/free-icon/closed_1234190, maybe try https://flaticons.net/customize.php?dir=Miscellaneous&icon=Closed.png without attribution });