disable data extraction notification sending

This commit is contained in:
Brice-W 2021-04-21 13:43:29 +10:00
parent 7aa1f30c98
commit d1e276bf08
3 changed files with 6 additions and 3 deletions

View File

@ -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();

View File

@ -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();

View File

@ -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;
} }