Version 0.9.38

This commit is contained in:
Ylian Saint-Hilaire 2021-10-20 14:06:58 -07:00
parent 1f20d45b66
commit 11e7a5c760
2 changed files with 2 additions and 2 deletions

View File

@ -1665,7 +1665,7 @@ function getDirectoryInfo(reqpath) {
var results = null, xpath = obj.path.join(reqpath, '*');
//if (process.platform == "win32") { xpath = xpath.split('/').join('\\'); }
try { results = fs.readdirSync(xpath); } catch (e) { }
if ((results != null) && (results.length == 0) && (fs.existsSync(reqpath) == false)) { results = null; }
try { if ((results != null) && (results.length == 0) && (fs.existsSync(reqpath) == false)) { results = null; } } catch (e) { }
if (results != null) {
for (var i = 0; i < results.length; ++i) {
if ((results[i] != '.') && (results[i] != '..')) {

View File

@ -1,6 +1,6 @@
{
"name": "meshcentral",
"version": "0.9.37",
"version": "0.9.38",
"keywords": [
"Remote Device Management",
"Remote Device Monitoring",