From 3554f4eb050335c03caa698845c3c586ba701f37 Mon Sep 17 00:00:00 2001 From: Adam Magaluk Date: Fri, 4 Oct 2013 08:56:30 -0400 Subject: [PATCH] Fixed issue with getChildProps setting follow. from this.follow to this.props.follow --- lib/dir-reader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dir-reader.js b/lib/dir-reader.js index dd9883b..7934bb2 100644 --- a/lib/dir-reader.js +++ b/lib/dir-reader.js @@ -209,7 +209,7 @@ DirReader.prototype.getChildProps = function (stat) { return { depth: this.depth + 1 , root: this.root || this , parent: this - , follow: this.follow + , follow: this.props.follow , filter: this.filter , sort: this.props.sort }