You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When initially joining a group chat there should be an option to define the nickname with which we will be joining said group chat. The only thing that I am not sure about is how this optional command would work out as we already have the password argument as an optional parameter.
Current example:
/join {GROUP_CHATID} [PASSWORD]
My current idea:
/join {GROUP_CHATID} [NICKNAME] [PASSWORD]
The text was updated successfully, but these errors were encountered:
Both a nick and a password can contain spaces. In order to allow for both arguments you'd need to add quotes to the arguments and parse it appropriately. It's a pain in the ass and is ugly. An alternative solution could be to put an optional name argument before the ID. You would be able to exclude quotations because only one of the arguments can have 64 contiguous characters. Anything before that arg is a nick, and anything after is a password.
When initially joining a group chat there should be an option to define the nickname with which we will be joining said group chat. The only thing that I am not sure about is how this optional command would work out as we already have the password argument as an optional parameter.
Current example:
/join {GROUP_CHATID} [PASSWORD]
My current idea:
/join {GROUP_CHATID} [NICKNAME] [PASSWORD]
The text was updated successfully, but these errors were encountered: