mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-24 16:57:50 +00:00
Enable shared contact sending.
This commit is contained in:
parent
707ca53a23
commit
290b184491
@ -429,13 +429,11 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
||||
setMedia(data.getData(), MediaType.AUDIO);
|
||||
break;
|
||||
case PICK_CONTACT:
|
||||
// TODO(greyson): Re-enable shared contact sending after receiving has been enabled for a few releases
|
||||
addAttachmentContactInfo(data.getData());
|
||||
// if (isSecureText && !isSmsForced()) {
|
||||
// openContactShareEditor(data.getData());
|
||||
// } else {
|
||||
// addAttachmentContactInfo(data.getData());
|
||||
// }
|
||||
if (isSecureText && !isSmsForced()) {
|
||||
openContactShareEditor(data.getData());
|
||||
} else {
|
||||
addAttachmentContactInfo(data.getData());
|
||||
}
|
||||
break;
|
||||
case GET_CONTACT_DETAILS:
|
||||
sendSharedContact(data.getParcelableArrayListExtra(ContactShareEditActivity.KEY_CONTACTS));
|
||||
@ -1400,13 +1398,11 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
||||
private void setMedia(@Nullable Uri uri, @NonNull MediaType mediaType, int width, int height) {
|
||||
if (uri == null) return;
|
||||
|
||||
// TODO(greyson): Re-enable shared contact sending after receiving has been enabled for a few releases
|
||||
attachmentManager.setMedia(glideRequests, uri, mediaType, getCurrentMediaConstraints(), width, height);
|
||||
// if (MediaType.VCARD.equals(mediaType) && isSecureText) {
|
||||
// openContactShareEditor(uri);
|
||||
// } else {
|
||||
// attachmentManager.setMedia(glideRequests, uri, mediaType, getCurrentMediaConstraints(), width, height);
|
||||
// }
|
||||
if (MediaType.VCARD.equals(mediaType) && isSecureText) {
|
||||
openContactShareEditor(uri);
|
||||
} else {
|
||||
attachmentManager.setMedia(glideRequests, uri, mediaType, getCurrentMediaConstraints(), width, height);
|
||||
}
|
||||
}
|
||||
|
||||
private void openContactShareEditor(Uri contactUri) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user