We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f62226d commit 363302aCopy full SHA for 363302a
1 file changed
EnvironmentalOptions.js
@@ -35,7 +35,10 @@ async function isMobile() {
35
async function isMozilla() {
36
const browserInfo = await browser.runtime.getBrowserInfo();
37
38
- return browserInfo.vendor === "Mozilla";
+ // Thunderbird is explicitly checked as a workaround as Thunderbird does not return the vendor correctly
39
+ // see https://bugzilla.mozilla.org/show_bug.cgi?id=1702722
40
+ // and https://github.com/TinyWebEx/AutomaticSettings/issues/11
41
+ return browserInfo.vendor === "Mozilla" || browserInfo.name === "Thunderbird";
42
}
43
44
/**
0 commit comments