From 97ead35100f72701f837b70461979190b19818ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?b=CA=B0edoh=E2=82=82=20sw=C3=A9?= Date: Tue, 17 Dec 2024 02:28:08 +0500 Subject: [PATCH] Oops #2. --- index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.ts b/index.ts index 74c961d..6674af6 100644 --- a/index.ts +++ b/index.ts @@ -21,9 +21,9 @@ class Message { toString() { let d = this.time return "[" + d.getDate() + "." + (d.getMonth() + 1) + "." + d.getFullYear() + - " " + d.getHours() + "." + d.getMinutes() + + " " + d.getHours() + ":" + d.getMinutes() + "] {" + this.address + "} " - + this.msg.replace("/\n/g", "$") + + this.msg.replace("/\n/g", "$"); } }