This commit is contained in:
zefie
2025-06-17 17:57:41 -04:00
parent 6248438b56
commit c81795a4c5

View File

@@ -4321,7 +4321,7 @@ class WTVIRC {
for (const [index, socket] of this.clients.entries()) { for (const [index, socket] of this.clients.entries()) {
if (socket !== clientSocket && this.isSpyingOnConnections(socket.nickname)) { if (socket !== clientSocket && this.isSpyingOnConnections(socket.nickname)) {
if (quitMsg) { if (quitMsg) {
this.sendWebTVNoticeTo(socket, `*** Notice --- Client exiting: ${clientSocket.nickname} (${clientSocket.username}!@${clientSocket.host}) [${clientSocket.realhost} [${quitMsg}]`); this.sendWebTVNoticeTo(socket, `*** Notice --- Client exiting: ${clientSocket.nickname} (${clientSocket.username}!@${clientSocket.host}) [${clientSocket.realhost}] [${quitMsg}]`);
} else { } else {
this.sendWebTVNoticeTo(socket, `*** Notice --- Client connecting: ${clientSocket.nickname} (${clientSocket.username}!@${clientSocket.host}) [${clientSocket.realhost} {users} [${clientSocket.userinfo}] <${clientSocket.uniqueId}>`); this.sendWebTVNoticeTo(socket, `*** Notice --- Client connecting: ${clientSocket.nickname} (${clientSocket.username}!@${clientSocket.host}) [${clientSocket.realhost} {users} [${clientSocket.userinfo}] <${clientSocket.uniqueId}>`);
} }