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) { ...@@ -1151,7 +1151,7 @@ Casper.prototype.handleReceivedResource = function(resource) {
1151 return; 1151 return;
1152 } 1152 }
1153 this.resources.push(resource); 1153 this.resources.push(resource);
1154 if (resource.url !== this.requestUrl && decodeURIComponent(resource.url) !== this.requestUrl) { 1154 if (resource.url !== this.requestUrl) {
1155 return; 1155 return;
1156 } 1156 }
1157 this.currentHTTPStatus = null; 1157 this.currentHTTPStatus = null;
......