fix(commander) if could not parse /etc/passwd - leave uid

This commit is contained in:
coderaiser 2014-08-15 06:32:13 -04:00
parent 71ad9a63b6
commit 846b430008

View file

@ -119,8 +119,8 @@
json.files = changeOrder(files);
json.path = format.addSlashToEnd(path);
changeUIDToName(json, function(error) {
callback(error, json);
changeUIDToName(json, function() {
callback(null, json);
});
}