ATTACHER: Fixed off by one attachment count in message

This commit is contained in:
Bobbi Webber-Manners 2020-10-29 23:00:25 -04:00
parent bd7cf513bd
commit 621fa2db31

View File

@ -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.");