mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-04-18 17:38:15 +00:00
ATTACHER: Fixed off by one attachment count in message
This commit is contained in:
parent
bd7cf513bd
commit
621fa2db31
@ -685,7 +685,7 @@ ask:
|
||||
beep();
|
||||
goto ask;
|
||||
}
|
||||
snprintf(userentry, 80, "Attachment #%u : Select a File to Attach", attachcount);
|
||||
snprintf(userentry, 80, "Attachment #%u : Select a File to Attach", attachcount + 1);
|
||||
file_ui(userentry,
|
||||
"",
|
||||
" Select file from tree browser, or [Tab] to enter filename. [Esc] cancels.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user