From 7e6f5ea07ebfc7bd78b1d6ac7f7743292cd8772e Mon Sep 17 00:00:00 2001 From: Jack Date: Thu, 21 Nov 2019 10:59:06 +0000 Subject: [PATCH] Misspelt, when selecting ALL emails it was being set to UNSEEN. This rectifies the issue. --- frappe/email/doctype/email_account/email_account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/email/doctype/email_account/email_account.js b/frappe/email/doctype/email_account/email_account.js index 7a175e7192..71f9cccb0d 100644 --- a/frappe/email/doctype/email_account/email_account.js +++ b/frappe/email/doctype/email_account/email_account.js @@ -184,7 +184,7 @@ frappe.ui.form.on("Email Account", { read as well as unread message from server. This may also cause the duplication\ of Communication (emails)."); frappe.confirm(msg, null, function() { - frm.set_value("email_sync_option", "UNSEEN"); + frm.set_value("email_sync_option", "ALL"); }); } }