Skip to content

Commit 516abb9

Browse files
author
Gabriel Doty
committed
Try try again
1 parent dbe64d6 commit 516abb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

public/js/home.controller.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -371,15 +371,15 @@ function processNewNodes(result) {
371371

372372
_.each(
373373
activeFashionNodes, function(node) {
374-
if (random_expiry()) {
374+
if (random_expiry() === true) {
375375
activateCircle(node, true, true);
376376
}
377377
}
378378
);
379379

380380
_.each(
381381
activeAutoNodes, function(node) {
382-
if (random_expiry()) {
382+
if (random_expiry() === true) {
383383
activateCircle(node, true, true);
384384
}
385385
}
@@ -471,7 +471,7 @@ function random_boolean() {
471471
}
472472

473473
function random_expiry() {
474-
return Math.random() >= 0.95;
474+
return Math.random() >= 0.90;
475475
}
476476

477477
var queueInterval = setInterval(

0 commit comments

Comments
 (0)