mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 09:49:21 +02:00
do not ask on forwarding messages to 'saved messages'
This commit is contained in:
parent
b4c0d56a8c
commit
e2a5d93adb
1 changed files with 14 additions and 10 deletions
|
@ -603,18 +603,22 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
|||
|
||||
private void handleForwarding() {
|
||||
DcChat dcChat = dcContext.getChat(chatId);
|
||||
String name = dcChat.getName();
|
||||
if( !dcChat.isGroup() ) {
|
||||
int[] contactIds = dcContext.getChatContacts(chatId);
|
||||
if( contactIds.length==1 || contactIds.length==2 ) {
|
||||
name = dcContext.getContact(contactIds[0]).getNameNAddr();
|
||||
if (dcChat.isSelfTalk()) {
|
||||
new RelayingTask(this, chatId).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
|
||||
} else {
|
||||
String name = dcChat.getName();
|
||||
if (!dcChat.isGroup()) {
|
||||
int[] contactIds = dcContext.getChatContacts(chatId);
|
||||
if (contactIds.length == 1 || contactIds.length == 2) {
|
||||
name = dcContext.getContact(contactIds[0]).getNameNAddr();
|
||||
}
|
||||
}
|
||||
new AlertDialog.Builder(this)
|
||||
.setMessage(getString(R.string.ask_forward, name))
|
||||
.setPositiveButton(R.string.ok, (dialogInterface, i) -> new RelayingTask(this, chatId).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR))
|
||||
.setNegativeButton(R.string.cancel, (dialogInterface, i) -> finish())
|
||||
.show();
|
||||
}
|
||||
new AlertDialog.Builder(this)
|
||||
.setMessage(getString(R.string.ask_forward, name))
|
||||
.setPositiveButton(R.string.ok, (dialogInterface, i) -> new RelayingTask(this, chatId).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR))
|
||||
.setNegativeButton(R.string.cancel, (dialogInterface, i) -> finish())
|
||||
.show();
|
||||
}
|
||||
|
||||
private void handleSharing() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue