mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
parent
ceb82a05ca
commit
32153ec379
1 changed files with 3 additions and 2 deletions
|
@ -196,7 +196,8 @@ public class RoutingActivity extends PassphraseRequiredActionBarActivity {
|
|||
|
||||
private ConversationParameters getConversationParametersForSendAction() {
|
||||
Recipients recipients;
|
||||
long threadId = getIntent().getLongExtra("thread_id", -1);
|
||||
String body = getIntent().getStringExtra("sms_body");
|
||||
long threadId = getIntent().getLongExtra("thread_id", -1);
|
||||
|
||||
try {
|
||||
String data = getIntent().getData().getSchemeSpecificPart();
|
||||
|
@ -206,7 +207,7 @@ public class RoutingActivity extends PassphraseRequiredActionBarActivity {
|
|||
recipients = null;
|
||||
}
|
||||
|
||||
return new ConversationParameters(threadId, recipients, null, null, null, null);
|
||||
return new ConversationParameters(threadId, recipients, body, null, null, null);
|
||||
}
|
||||
|
||||
private ConversationParameters getConversationParametersForShareAction() {
|
||||
|
|
Loading…
Reference in a new issue