-
Notifications
You must be signed in to change notification settings - Fork 271
Delayed join / command-order #662
Comments
I simply fixed this by using: Maybe a better solution! //Sam |
Glad to hear you solved it! Just remember that the
and that worked for me. |
I think the issue wasn't so much commands not being sent as it was commands being sent too late. The client tries to join channels before the command to identify with NickServ is sent, and thus is denied joining channels that require the use of a registered nickname. |
@erming Yes, it worked for me... The command worked:
But as @dgw commented, its a timing issue... Joins happens before Identify are done. Is there a /msg wait 1000ms command to delay? Like having:
|
@dgw is right. However, there is already a 1000ms delay in place, but maybe it's not enough. The code for running commands and joining channels can be found here: https://github.com/erming/shout/blob/master/src/client.js#L196 @samboman if you put everything in |
@erming No, it does not work: |
I have a list of Channels I auto join. And I have setup a commands-entry in the user configuration file to identify myself.
The problem are channels that require registered nicks to join (eg. #openvpn on freenode). The commands seems to be sent after the join-commands.
//Sam
The text was updated successfully, but these errors were encountered: