From a9869757cf9c7b28497c69dffc3a5e7a0f6e1216 Mon Sep 17 00:00:00 2001 From: Bobbi Webber-Manners Date: Wed, 16 Sep 2020 18:49:13 -0400 Subject: [PATCH] EMAIL: Fixed arguments passed to EDIT when composing news --- apps/email.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/email.c b/apps/email.c index 56be325..a34bb17 100644 --- a/apps/email.c +++ b/apps/email.c @@ -1984,7 +1984,7 @@ void copy_to_mailbox(struct emailhdrs *h, uint16_t idx, if (mode != ' ') { snprintf(filename, 80, email_file, cfg_emaildir, mbox, num); - load_editor(mode == 'N' ? 0 : 1); + load_editor(mode == 'N' ? 2 : 1); } }