Skip to content

Commit

Permalink
Always remove meta tags when selected
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Oct 4, 2024
1 parent 67cf8d3 commit 9f22e33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/eu/faircode/email/FragmentCompose.java
Original file line number Diff line number Diff line change
Expand Up @@ -5304,8 +5304,9 @@ public Integer call() throws Exception {
if (resize > 0)
resizeAttachment(context, attachment, resize);

if (privacy && resize == 0)
if (privacy)
try {
Log.i("Removing meta tags");
ExifInterface exif = new ExifInterface(file);

exif.setAttribute(ExifInterface.TAG_GPS_LATITUDE_REF, null);
Expand Down

0 comments on commit 9f22e33

Please sign in to comment.