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

do not record normal navigation as popup

This commit is contained in:
gorhill 2014-10-16 08:14:23 -04:00
parent 69b6027174
commit 1cff191579

View File

@ -74,7 +74,9 @@
}
// https://github.com/gorhill/uBlock/issues/91
pageStore.recordResult('popup', requestURL, result);
if ( result !== '' ) {
pageStore.recordResult('popup', requestURL, result);
}
// Not blocked
if ( pageStore.boolFromResult(result) === false ) {