aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugin/multiplex/index.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugin/multiplex/index.js b/plugin/multiplex/index.js
index f11639b..8195f04 100644
--- a/plugin/multiplex/index.js
+++ b/plugin/multiplex/index.js
@@ -44,8 +44,7 @@ app.get("/", function(req, res) {
app.get("/token", function(req,res) {
var ts = new Date().getTime();
- var rand = new Uint32Array(1);
- window.crypto.getRandomValues(rand)
+ var rand = Math.floor(Math.random()*9999999);
var secret = ts.toString() + rand.toString();
res.send({secret: secret, socketId: createHash(secret)});
});
@@ -62,4 +61,4 @@ var brown = '\033[33m',
green = '\033[32m',
reset = '\033[0m';
-console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + reset );
+console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + reset ); \ No newline at end of file