Skip to content

Commit 1c4c8f9

Browse files
committed
Merge pull request webpack#665 from pago/patch-1
Fix error in watch mode
2 parents a14f7a5 + 0279679 commit 1c4c8f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/AsyncDependenciesBlock.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ AsyncDependenciesBlock.prototype.updateHash = function updateHash(hash) {
3131
};
3232

3333
AsyncDependenciesBlock.prototype.disconnect = function() {
34-
this.chunk = null;
34+
this.chunks = null;
3535
DependenciesBlock.prototype.disconnect.call(this);
36-
};
36+
};

0 commit comments

Comments
 (0)