fix(email): resolve case mismatch in auto-linking from email address

This commit is contained in:
Ejaaz Khan 2025-06-21 14:30:51 +05:30
parent 94109de17d
commit 73cf975a9a

View file

@ -579,7 +579,7 @@ def parse_email(email_strings):
if not document_parts or len(document_parts) != 2:
continue
doctype = unquote_plus(document_parts[0])
doctype = unquote_plus(frappe.unscrub(document_parts[0]))
docname = unquote_plus(document_parts[1])
yield doctype, docname