1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00

minor edit

This commit is contained in:
gorhill 2014-07-14 21:47:32 -04:00
parent b563d8bc43
commit bb3e84f911

View File

@ -101,7 +101,7 @@ var onBeforeSendHeaders = function(details) {
// Special handling for root document. // Special handling for root document.
var requestType = details.type; var requestType = details.type;
if ( requestType === 'main_frame' && details.parentFrameId < 0 ) { if ( requestType === 'main_frame' && details.parentFrameId === -1 ) {
return onBeforeRootDocument(tabId, details); return onBeforeRootDocument(tabId, details);
} }