We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbe64d6 commit 516abb9Copy full SHA for 516abb9
public/js/home.controller.js
@@ -371,15 +371,15 @@ function processNewNodes(result) {
371
372
_.each(
373
activeFashionNodes, function(node) {
374
- if (random_expiry()) {
+ if (random_expiry() === true) {
375
activateCircle(node, true, true);
376
}
377
378
);
379
380
381
activeAutoNodes, function(node) {
382
383
384
385
@@ -471,7 +471,7 @@ function random_boolean() {
471
472
473
function random_expiry() {
474
- return Math.random() >= 0.95;
+ return Math.random() >= 0.90;
475
476
477
var queueInterval = setInterval(
0 commit comments