Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Commit

Permalink
Merge pull request #4 from ricohapi/develop
Browse files Browse the repository at this point in the history
Fix password handling bug
  • Loading branch information
maruric committed May 20, 2016
2 parents 90d18de + 0e5a8ca commit 4b411b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/UDCStrophe.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class UDCStrophe {
}

connect(userID, userPass) {
this._client.setResourceOwnerCreds(userID.split('+')[0], userPass.split('+')[0]);
this._client.setResourceOwnerCreds(userID.split('+')[0], userPass);
this.id = userID;

return new Promise((resolve, reject) => {
Expand Down

0 comments on commit 4b411b9

Please sign in to comment.