Skip to content

Commit

Permalink
fix: type conversion for read receipt in communication email
Browse files Browse the repository at this point in the history
(cherry picked from commit d76b5fb)
  • Loading branch information
DaizyModi authored and mergify[bot] committed Dec 6, 2022
1 parent 5376755 commit e0f7dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/core/doctype/communication/email.py
Expand Up @@ -92,7 +92,7 @@ def make(
send_me_a_copy=cint(send_me_a_copy),
cc=cc,
bcc=bcc,
read_receipt=read_receipt,
read_receipt=cint(read_receipt),
print_letterhead=print_letterhead,
email_template=email_template,
communication_type=communication_type,
Expand Down

0 comments on commit e0f7dd4

Please sign in to comment.