-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sending new line in chat creates multiple messages #1036
Comments
I can reproduce the issue, I'll see about fixing it. |
Okay, I can see that there is a related bug in the develop client that both collapses newlines and sends the message multiple times. As for this one - maybe we can just make a notification timeout instead? Which notifications do you have in mind? |
I'm a java client dev and tried to prohibit a notification spam (it fills your left screen with stacked notifications). I can't think of a way to do this as for multiple messages, you want to throw multiple notifications. The java client just sends new lines as spaces which isn't the right solution in my opinion, as sending multiple lines can be quite useful. Is there a way we can send multiple lines per message? Shouldn't pose a problem for IRC, does it? |
https://tools.ietf.org/html/rfc1459#section-2.3.1 claims that messages cannot contain CR or LF except for CRLF at the end, so there's no other way, I'm afraid. |
Adding to the above - sending multiple messages when given a multi-line input seems to have been intended behaviour, it's also present in the 0.16.1 chat implementation. |
When sending a chat message containing multiple lines (e.g. from copy pasting) the client just decomposes it in to multiple messages, which get's extremly annoying on the receiving side as it creates countless notifications that stack up.
Would suggest just disallowing multiple lines in the chat at once.
The text was updated successfully, but these errors were encountered: