Skip to content

Commit

Permalink
Nullify Data Hash when Data is Nullified
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-signal authored and greyson-signal committed Nov 7, 2019
1 parent 8ba15cf commit 6054d0b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ public void deleteAttachmentFilesForMessage(long mmsId) {
ContentValues values = new ContentValues();
values.put(DATA, (String) null);
values.put(DATA_RANDOM, (byte[]) null);
values.put(DATA_HASH, (String) null);
values.put(THUMBNAIL, (String) null);
values.put(THUMBNAIL_RANDOM, (byte[]) null);
values.put(FILE_NAME, (String) null);
Expand Down

0 comments on commit 6054d0b

Please sign in to comment.