fix(email): resolve case mismatch in auto-linking from email address
This commit is contained in:
parent
94109de17d
commit
73cf975a9a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue