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
tree.view.getCellValue returns a string, thus it needs to be parsed (e.g. using === "true"), for both of these values:
tree.view.getCellValue
=== "true"
thunderbird-subjectcleaner/content/options.js
Lines 89 to 90 in fcc3388
Due to that bug, these if conditions are currently broken as the strings "true" and "false" are truthy in JS:
if
"true"
"false"
thunderbird-subjectcleaner/content/clean.js
Lines 10 to 19 in d54928f
Further, case sensitivity setting won't work for non-regexes once the regex setting is fixed, because replace() doesn't have a flags parameter (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace):
replace()
Line 18 in d54928f
The text was updated successfully, but these errors were encountered:
No branches or pull requests
tree.view.getCellValue
returns a string, thus it needs to be parsed (e.g. using=== "true"
), for both of these values:thunderbird-subjectcleaner/content/options.js
Lines 89 to 90 in fcc3388
Due to that bug, these
if
conditions are currently broken as the strings"true"
and"false"
are truthy in JS:thunderbird-subjectcleaner/content/clean.js
Lines 10 to 19 in d54928f
Further, case sensitivity setting won't work for non-regexes once the regex setting is fixed, because
replace()
doesn't have a flags parameter (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace):thunderbird-subjectcleaner/content/clean.js
Line 18 in d54928f
The text was updated successfully, but these errors were encountered: