We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"I have found that recently in ver 4.1, the run filters on folder Icon/ button has stop working. Menu - Tools, Run filters on folder works."
The text was updated successfully, but these errors were encountered:
This regression is caused by some code I wrote for Thunderbird 68 - code:
if (util.versionGreaterOrEqual(util.AppverFull, "67")) { var {MailServices} = ChromeUtils.import("resource:///modules/MailServices.jsm"); // new module spelling } else Components.utils.import("resource:///modules/mailServices.js", {});
the last line will import the Symbol as "mailServices" and not "MailServices"
Fix is to force the new variable name in both cases:
var {MailServices} = (util.versionGreaterOrEqual(util.AppverFull, "64")) ? ChromeUtils.import("resource:///modules/MailServices.jsm") : // new module spelling Components.utils.import("resource:///modules/mailServices.js", {});
Sorry, something went wrong.
Fixed in version 4.4.1.
No branches or pull requests
"I have found that recently in ver 4.1, the run filters on folder Icon/ button has stop working. Menu - Tools, Run filters on folder works."
The text was updated successfully, but these errors were encountered: