disabled the extension setting for mobile

This commit is contained in:
antelle 2021-04-19 18:18:37 +02:00
parent 5c5de91672
commit 8525571afc
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ const Features = {
return this._browserIcon; return this._browserIcon;
}, },
get supportsBrowserExtensions() { get supportsBrowserExtensions() {
return this.isDesktop || this.browserIcon !== 'safari'; return !this.isMobile && (this.isDesktop || this.browserIcon !== 'safari');
}, },
get extensionBrowserFamily() { get extensionBrowserFamily() {
if (Features.isDesktop) { if (Features.isDesktop) {