mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-03-09 15:40:18 +00:00
Fixed typo, #3190.
This commit is contained in:
parent
0240d1a651
commit
c814fdc412
5 changed files with 5 additions and 5 deletions
|
@ -2851,7 +2851,7 @@ function CreateMeshCentralServer(config, args) {
|
|||
obj.fs.readFile(amtlogfilename, 'utf8', function (err, data) {
|
||||
var amtPasswords = {}; // UUID --> [Passwords]
|
||||
if ((err == null) && (data != null)) {
|
||||
const lines = data.split('\r\n').join('\n').split('\n');
|
||||
const lines = data.split('\n');
|
||||
for (var i in lines) {
|
||||
var line = lines[i];
|
||||
if (line.startsWith('{')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue