This commit is contained in:
bʰedoh₂ swé 2024-12-17 02:28:08 +05:00
parent 1b5f8e3254
commit 97ead35100

View File

@ -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", "$");
}
}