mirror of
https://git.sr.ht/~emerson/reflectionircd
synced 2025-04-13 09:59:52 +00:00
fix 421 command
This commit is contained in:
parent
e9fb5348d1
commit
c37642a9ee
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ export class Client {
|
|||
// Exempting these from sending a 421, otherwise it will get annoying
|
||||
break;
|
||||
default:
|
||||
this.sendMessage(this.server.name, "421", [message.command, 'Unknown command'], message.tags);
|
||||
this.sendMessage(this.server.name, "421", [this.user.nick, message.command, 'Unknown command'], message.tags);
|
||||
console.log(`unknown command ${message.command}`);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue