Skip to content

Commit

Permalink
Add missing colon to REGISTER reply
Browse files Browse the repository at this point in the history
  • Loading branch information
progval committed Sep 16, 2023
1 parent 8bdcc72 commit 1cb9dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sable_ircd/src/messages/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ define_messages! {

// Extension messages
ChatHistoryTarget => { (target_name: &str, timestamp: &str) => "CHATHISTORY TARGETS {target_name} {timestamp}" },
Register => { (status: &str, account: Nickname, message: &str) => "REGISTER {status} {account} {message}" },
Register => { (status: &str, account: Nickname, message: &str) => "REGISTER {status} {account} :{message}" },
BatchStart => { (name: &str, batch_type: &str, args: &str) => "BATCH +{name} {batch_type} {args}" },
BatchEnd => { (name: &str) => "BATCH -{name}" },
Ack => { (source) => ":{source} ACK" },
Expand Down

0 comments on commit 1cb9dc4

Please sign in to comment.