-
Notifications
You must be signed in to change notification settings - Fork 700
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
Store channel keys #1003
Store channel keys #1003
Conversation
Just like the parser PR, I think the commit author should be @spookhurb :) |
I didn't re-use his code (besides test), and it uses a different approach. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor comment, apart from that all good!
src/plugins/irc-events/mode.js
Outdated
} | ||
|
||
for (var i = 0; i < data.modes.length; i++) { | ||
var mode = data.modes[i]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a minor nitpick, but any reason why not to use data.modes.forEach(mode => { ... });
instead?
Also, const
when possible?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Store channel keys
Fixes #412 and supercedes #715. This PR gets channel key from channel mode, instead of hooking join command.
cc @spookhurb, @DanielOaks