1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-27 13:43:17 +00:00

Fixed typo with nodeid helper on windows

This commit is contained in:
Bryan Roe
2019-05-07 12:06:22 -07:00
parent a082c8bf55
commit 2c45d57259
2 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ function _meshNodeId()
v = null;
}
}
if (v == null && (v = db.GetBuffer('NodeID')) != NULL)
if (v == null && (v = db.GetBuffer('NodeID')) != null)
{
ret = v.toString('hex');
}