better confirmation message

This commit is contained in:
B. Petersen 2024-10-11 01:32:29 +02:00 committed by bjoern
parent d3328df6f2
commit 86a9da5062
2 changed files with 3 additions and 2 deletions

View file

@ -678,7 +678,7 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
}
private void askSendingFiles(ArrayList<Uri> uriList, Runnable onConfirm) {
String message = String.format(getString(R.string.ask_send_files_to_selected_chat), uriList.size());
String message = String.format(getString(R.string.ask_send_files_to_chat), uriList.size(), dcChat.getName());
if (SendRelayedMessageUtil.containsVideoType(context, uriList)) {
message += "\n\n" + getString(R.string.videos_sent_without_recoding);
}