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
When setting asynchronous.mail.clear.after.sent = true
The value received is a String instead of a boolean, so, when it enters this method:
private static List<Boolean> getAsynchronousMailDeletingOptionsFromValue(value) { switch(value){ case 'attachments': return [false,true] case true: return [true,false] case false: return [false,false] default: return [false,false] } }
It goes to the default value because it is "true" instead of true.
I suggest modifying it so it is:
case true: case "true": ... case false: case "false": ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When setting asynchronous.mail.clear.after.sent = true
The value received is a String instead of a boolean, so, when it enters this method:
It goes to the default value because it is "true" instead of true.
I suggest modifying it so it is:
The text was updated successfully, but these errors were encountered: