aboutsummaryrefslogtreecommitdiff
path: root/hotline/transaction_handlers.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2022-07-03 20:40:45 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2022-07-03 20:40:45 -0700
commitd29edb0a25c577f6490f21844fa13e13ba3e731e (patch)
treecf39b5767f7bd744ecf180e7e448a4fd1353f496 /hotline/transaction_handlers.go
parentedcafb1c0673218fb7c17d96c81bb9db4f806e58 (diff)
Fix refuse private chat error messaging
Diffstat (limited to 'hotline/transaction_handlers.go')
-rw-r--r--hotline/transaction_handlers.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/hotline/transaction_handlers.go b/hotline/transaction_handlers.go
index 2dc5e06..46fe362 100644
--- a/hotline/transaction_handlers.go
+++ b/hotline/transaction_handlers.go
@@ -1704,8 +1704,6 @@ func HandleInviteNewChat(cc *ClientConn, t *Transaction) (res []Transaction, err
targetID := t.GetField(fieldUserID).Data
newChatID := cc.Server.NewPrivateChat(cc)
- // Halcyon does not accept private chats.
-
// Check if target user has "Refuse private chat" flag
binary.BigEndian.Uint16(targetID)
targetClient := cc.Server.Clients[binary.BigEndian.Uint16(targetID)]
@@ -1716,7 +1714,7 @@ func HandleInviteNewChat(cc *ClientConn, t *Transaction) (res []Transaction, err
*NewTransaction(
tranServerMsg,
cc.ID,
- NewField(fieldData, []byte(string(targetClient.UserName)+" does not accept private messages.")),
+ NewField(fieldData, []byte(string(targetClient.UserName)+" does not accept private chats.")),
NewField(fieldUserName, targetClient.UserName),
NewField(fieldUserID, *targetClient.ID),
NewField(fieldOptions, []byte{0, 2}),