Commit e6e192ff e6e192ff3d616575eb2b5e2574b7fba3d97c7363 by Nicolas Perriault

refs #565 - reverting 2c9547ab because of unexpected side effects

1 parent 2c9547ab
......@@ -1151,7 +1151,7 @@ Casper.prototype.handleReceivedResource = function(resource) {
return;
}
this.resources.push(resource);
if (resource.url !== this.requestUrl && decodeURIComponent(resource.url) !== this.requestUrl) {
if (resource.url !== this.requestUrl) {
return;
}
this.currentHTTPStatus = null;
......