1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-20 01:12:38 +01:00

Improve test for presence of browser as extensions API

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1914

The issue affected only Chromium-based browsers.
This commit is contained in:
Raymond Hill 2022-01-01 11:07:17 -05:00
parent a611c3f40a
commit d38c19cabf
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -27,7 +27,10 @@
/******************************************************************************/ /******************************************************************************/
if ( self.browser instanceof Object ) { if (
self.browser instanceof Object &&
self.browser instanceof Element === false
) {
self.chrome = self.browser; self.chrome = self.browser;
} else { } else {
self.browser = self.chrome; self.browser = self.chrome;