-
-
Notifications
You must be signed in to change notification settings - Fork 110
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
fix to allow passwords that contains colons #21
base: master
Are you sure you want to change the base?
Conversation
Any updates on this? Still having to manually encode in my app. |
👍 |
var userid = credentials[0]; | ||
var password = credentials[1]; | ||
var password = credentials.slice(1).join(':'); |
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.
you should use split() (in L77) with a limit (second parameter), which would avoid the need to workaround the problem in this way.
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.
see inline-comment
@blevine Are you planning to work on this PR? If not, I would open a new one with your changes and hope that @jaredhanson merges it? :) |
@FlorianSW No, I'm not planning to work on this at this time. |
Fixes #20