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
Hello,
I think i found a fix for a bug i get on showing inline attachments.
On https://github.com/Enough-Software/enough_mail/blob/main/lib/src/mime_message.dart
Line 1012 you check if partCid.toLowerCase() == cid but cid it is not in toLowerCase so i get a return null even if the part exist.
partCid.toLowerCase() == cid
But Line 1008 the variable contentId = contentId.toLowerCase(); but not used
contentId = contentId.toLowerCase();
You maybe need to use it on line 1012 as follow partCid.toLowerCase() == contentId
partCid.toLowerCase() == contentId
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I think i found a fix for a bug i get on showing inline attachments.
On https://github.com/Enough-Software/enough_mail/blob/main/lib/src/mime_message.dart
Line 1012 you check if
partCid.toLowerCase() == cid
but cid it is not in toLowerCase so i get a return null even if the part exist.But Line 1008 the variable
contentId = contentId.toLowerCase();
but not usedYou maybe need to use it on line 1012 as follow
partCid.toLowerCase() == contentId
The text was updated successfully, but these errors were encountered: