mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-03 18:45:38 +00:00
disable data extraction notification sending
This commit is contained in:
parent
7aa1f30c98
commit
d1e276bf08
@ -356,7 +356,8 @@ public class MediaOverviewActivity extends PassphraseRequiredActionBarActivity {
|
|||||||
// Sending a Data extraction notification (for incoming attachments only)
|
// Sending a Data extraction notification (for incoming attachments only)
|
||||||
boolean containsIncoming = mediaRecords.parallelStream().anyMatch(m -> !m.isOutgoing());
|
boolean containsIncoming = mediaRecords.parallelStream().anyMatch(m -> !m.isOutgoing());
|
||||||
if (containsIncoming) {
|
if (containsIncoming) {
|
||||||
sendMediaSavedNotificationIfNeeded();
|
//TODO uncomment line below when Data extraction will be activated
|
||||||
|
//sendMediaSavedNotificationIfNeeded();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}.execute();
|
}.execute();
|
||||||
|
@ -354,7 +354,8 @@ public class MediaPreviewActivity extends PassphraseRequiredActionBarActivity im
|
|||||||
new Attachment(mediaItem.uri, mediaItem.type, saveDate, null));
|
new Attachment(mediaItem.uri, mediaItem.type, saveDate, null));
|
||||||
// Sending a Data extraction notification (for incoming attachments only)
|
// Sending a Data extraction notification (for incoming attachments only)
|
||||||
if(!mediaItem.outgoing) {
|
if(!mediaItem.outgoing) {
|
||||||
sendMediaSavedNotificationIfNeeded();
|
//TODO uncomment line below when Data extraction will be activated
|
||||||
|
//sendMediaSavedNotificationIfNeeded();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.execute();
|
.execute();
|
||||||
|
@ -748,7 +748,8 @@ public class ConversationFragment extends Fragment
|
|||||||
saveTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, attachments.toArray(new SaveAttachmentTask.Attachment[0]));
|
saveTask.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, attachments.toArray(new SaveAttachmentTask.Attachment[0]));
|
||||||
// Sending a Data extraction notification (for incoming attachments only)
|
// Sending a Data extraction notification (for incoming attachments only)
|
||||||
if(!message.isOutgoing()) {
|
if(!message.isOutgoing()) {
|
||||||
sendMediaSavedNotificationIfNeeded();
|
//TODO uncomment line below when Data extraction will be activated
|
||||||
|
//sendMediaSavedNotificationIfNeeded();
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user