Use message text as prompt when using default prompt

This commit is contained in:
M66B
2024-05-31 08:26:47 +02:00
parent 29ea8b8d4c
commit 6925385074
2 changed files with 14 additions and 9 deletions

View File

@@ -2697,7 +2697,7 @@ public class FragmentCompose extends FragmentBase {
Bundle args = new Bundle();
args.putLong("id", working);
args.putCharSequence("body", body);
args.putLong("template", template == null ? -1L : template);
args.putLong("template", template == null ? 0L : template);
new SimpleTask<Spanned>() {
@Override