| Index: Source/devtools/front_end/network/BlockedURLsPane.js
|
| diff --git a/Source/devtools/front_end/network/BlockedURLsPane.js b/Source/devtools/front_end/network/BlockedURLsPane.js
|
| index 113918acde9093302d2c370b6cd05b98c5cf04b3..a7bf879abd39ed5ad8ba858b0c14ab8a28ab42c0 100644
|
| --- a/Source/devtools/front_end/network/BlockedURLsPane.js
|
| +++ b/Source/devtools/front_end/network/BlockedURLsPane.js
|
| @@ -236,7 +236,7 @@ WebInspector.BlockedURLsPane.prototype = {
|
| _onRequestFinished: function(event)
|
| {
|
| var request = /** @type {!WebInspector.NetworkRequest} */ (event.data);
|
| - if (request.blocked) {
|
| + if (request.wasBlocked()) {
|
| var count = this._blockedCountForUrl.get(request.url) || 0;
|
| this._blockedCountForUrl.set(request.url, count + 1);
|
| this._updateThrottler.schedule(this._update.bind(this));
|
|
|