mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-08-07 07:25:21 +00:00
ATTACHER: Fixed off by one attachment count in message
This commit is contained in:
@@ -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.");
|
||||
|
Reference in New Issue
Block a user