mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-16 23:42:39 +01:00
Only update badge count when blocked
This commit is contained in:
parent
06a3526207
commit
d5465d3159
@ -464,9 +464,6 @@ vAPI.tabs.onPopup = function(details) {
|
|||||||
if ( pageStore ) {
|
if ( pageStore ) {
|
||||||
pageStore.logRequest(context, result);
|
pageStore.logRequest(context, result);
|
||||||
}
|
}
|
||||||
if ( µb.userSettings.showIconBadge ) {
|
|
||||||
µb.updateBadgeAsync(details.openerTabId);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Not blocked
|
// Not blocked
|
||||||
if ( µb.isAllowResult(result) ) {
|
if ( µb.isAllowResult(result) ) {
|
||||||
@ -474,6 +471,9 @@ vAPI.tabs.onPopup = function(details) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Blocked
|
// Blocked
|
||||||
|
if ( µb.userSettings.showIconBadge ) {
|
||||||
|
µb.updateBadgeAsync(details.openerTabId);
|
||||||
|
}
|
||||||
|
|
||||||
// It is a popup, block and remove the tab.
|
// It is a popup, block and remove the tab.
|
||||||
if(details.targetTabId !== "preempt") {
|
if(details.targetTabId !== "preempt") {
|
||||||
|
Loading…
Reference in New Issue
Block a user