fix: keep same subject on reply or reply all

This commit is contained in:
Shariq Ansari 2024-09-05 01:42:27 +05:30
parent 3ef9258b29
commit ff68bacd9f

View File

@ -105,6 +105,8 @@ function reply(email, reply_all = false) {
if (!email.subject.startsWith('Re:')) {
editor.subject = `Re: ${email.subject}`
} else {
editor.subject = email.subject
}
if (reply_all) {