diff --git a/extension/chrome/content/nightly.js b/extension/chrome/content/nightly.js index 7e579a0..61d56d4 100644 --- a/extension/chrome/content/nightly.js +++ b/extension/chrome/content/nightly.js @@ -16,7 +16,10 @@ variables: { }, get appid() this.appInfo.ID, - get vendor() this.appInfo.vendor, + get vendor() { + // Fix for vendor not being set in Mozilla Thunderbird + return this.appInfo.name == "Thunderbird" && this.appInfo.vendor == "" ? "Mozilla" : this.appInfo.vendor; + }, get name() this.appInfo.name, get version() this.appInfo.version, get appbuildid() this.appInfo.appBuildID,