1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Fixed the OTP random generator to be even.

This commit is contained in:
Ylian Saint-Hilaire 2019-02-05 20:01:01 -08:00
parent dcfec7487f
commit cd8ecee538
8 changed files with 22 additions and 11 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -971,6 +971,10 @@
//addNotification(n);
break;
}
case 'stopped': { // Server is stopping.
// TODO: Disconnect
break;
}
default:
console.log('Unknown message.event.action', message.event.action);
break;

View file

@ -1685,6 +1685,10 @@
addNotification(n);
break;
}
case 'stopped': { // Server is stopping.
// TODO: Disconnect
break;
}
default:
//console.log('Unknown message.event.action', message.event.action);
break;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long