Issue #106: Typo in LocalFileSystem.prototype._castDate

This commit is contained in:
macdonst 2011-06-07 22:03:16 +08:00
parent 740e50ce61
commit 8da5ad8eca

View File

@ -1044,7 +1044,7 @@ LocalFileSystem.prototype._castDate = function(pluginResult) {
file.type = pluginResult.message.type;
file.name = pluginResult.message.name;
file.fullPath = pluginResult.message.fullPath;
file.lastModifedDate = new Date(pluginResult.message.lastModifiedDate);
file.lastModifiedDate = new Date(pluginResult.message.lastModifiedDate);
pluginResult.message = file;
}
return pluginResult;