Fix error in watch mode

This commit is contained in:
Patrick Gotthardt 2015-01-07 09:20:48 +01:00
parent a14f7a5f30
commit 027967903e
1 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,6 @@ AsyncDependenciesBlock.prototype.updateHash = function updateHash(hash) {
};
AsyncDependenciesBlock.prototype.disconnect = function() {
this.chunk = null;
this.chunks = null;
DependenciesBlock.prototype.disconnect.call(this);
};
};