File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 26
26
// so we synthetize these missing events when this happens.
27
27
// https://github.com/uBlockOrigin/uAssets/issues/10323
28
28
// Also mind whether the new tab is launched from an external application.
29
+ // https://github.com/uBlockOrigin/uBlock-issues/issues/2227
30
+ // Revert commit related to issue above.
29
31
30
32
vAPI . Tabs = class extends vAPI . Tabs {
31
33
constructor ( ) {
@@ -66,8 +68,7 @@ vAPI.Tabs = class extends vAPI.Tabs {
66
68
const isClientRedirect =
67
69
Array . isArray ( details . transitionQualifiers ) &&
68
70
details . transitionQualifiers . includes ( 'client_redirect' ) ;
69
- const isStartPage = details . transitionType === 'start_page' ;
70
- if ( isClientRedirect === false && isStartPage === false ) { return ; }
71
+ if ( isClientRedirect === false ) { return ; }
71
72
this . onCreatedNavigationTargetHandler ( {
72
73
tabId : details . tabId ,
73
74
sourceTabId : details . tabId ,
You can’t perform that action at this time.
0 commit comments