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

Changed copyrights headers for 2019.

This commit is contained in:
Ylian Saint-Hilaire 2019-01-03 16:22:15 -08:00
parent 9230a4508a
commit 678b904fb3
70 changed files with 64 additions and 64 deletions

View file

@ -1,7 +1,7 @@
/**
* @description MeshCentral main module
* @author Ylian Saint-Hilaire
* @copyright Intel Corporation 2018
* @copyright Intel Corporation 2018-2019
* @license Apache-2.0
* @version v0.0.1
*/
@ -989,7 +989,7 @@ function CreateMeshCentralServer(config, args) {
obj.updateMeshCmdTimer = null;
obj.fs.watch(meshcmdPath, function (eventType, filename) {
if (obj.updateMeshCmdTimer != null) { clearTimeout(obj.updateMeshCmdTimer); obj.updateMeshCmdTimer = null; }
obj.updateMeshCmdTimer = setTimeout(function () { obj.updateMeshCmd(); console.log('Updated meshcmd.js.'); }, 5000);
obj.updateMeshCmdTimer = setTimeout(function () { obj.updateMeshCmd(); /*console.log('Updated meshcmd.js.');*/ }, 5000);
});
}
};