Skip to content

Commit

Permalink
Actually join !storepass password with spaces
Browse files Browse the repository at this point in the history
Signed-off-by: Willem Mulder <willemmaster@hotmail.com>
  • Loading branch information
14mRh4X0r committed Mar 19, 2019
1 parent 52130e4 commit 45d9584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bridge/MatrixHandler.js
Expand Up @@ -536,7 +536,7 @@ MatrixHandler.prototype._onAdminMessage = Promise.coroutine(function*(req, event

try {
// Allow passwords with spaces
let pass = args.join('');
let pass = args.join(' ');
let explanation = `When you next reconnect to ${domain}, this password ` +
`will be automatically sent in a PASS command which most ` +
`IRC networks will use as your NickServ password. This ` +
Expand Down

0 comments on commit 45d9584

Please sign in to comment.