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

Updated French translation.

This commit is contained in:
Ylian Saint-Hilaire 2021-02-08 13:52:22 -08:00
parent b6e66a0bc0
commit f495416d4b
72 changed files with 91 additions and 2 deletions

View file

@ -1293,7 +1293,11 @@ function getSystemInformation(func) {
} catch (e) { }
}
results.hardware.agentvers = process.versions;
results.hash = require('SHA384Stream').create().syncHash(JSON.stringify(results)).toString('hex');
func(results);
/*
// On Windows platforms, get volume information - Needs more testing.
if (process.platform == 'win32')
{
results.pendingReboot = require('win-info').pendingReboot(); // Pending reboot
@ -1325,6 +1329,7 @@ function getSystemInformation(func) {
results.hash = require('SHA384Stream').create().syncHash(JSON.stringify(results)).toString('hex');
func(results);
}
*/
} catch (e) { func(null, e); }
}