This commit is contained in:
Ryan Dahl 2018-08-30 13:54:56 -04:00
parent 2dd9a8d028
commit 0ec629d105
3 changed files with 9 additions and 9 deletions

View file

@ -187,7 +187,7 @@ export class FileInfo {
this.len = this._msg.len().toFloat64();
this.modified = this._msg.modified().toFloat64();
this.accessed = this._msg.accessed().toFloat64();
this.created = created ? created: null;
this.created = created ? created : null;
}
isFile() {