Skip to content

Commit

Permalink
Merge pull request #9 from Ventero/password
Browse files Browse the repository at this point in the history
Password is always "[object ArrayBuffer"
  • Loading branch information
Matt Corallo committed Apr 20, 2014
2 parents cf79b41 + 3d7db4d commit d9e7e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $('#number').on('change', function() {//TODO

var single_device = false;
var signaling_key = getRandomBytes(32 + 20);
var password = btoa(getRandomBytes(16));
var password = btoa(getString(getRandomBytes(16)));
password = password.substring(0, password.length - 2);

$('#init-go-single-client').click(function() {
Expand Down

0 comments on commit d9e7e59

Please sign in to comment.