mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Attempt to remove tracking from original messages
This commit is contained in:
@@ -1505,9 +1505,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
|
||||
new SimpleTask<String>() {
|
||||
@Override
|
||||
protected String onExecute(Context context, Bundle args) throws Throwable {
|
||||
protected String onExecute(Context context, Bundle args) throws IOException {
|
||||
long id = args.getLong("id");
|
||||
return getHtmlEmbedded(id);
|
||||
return HtmlHelper.removeTracking(context, getHtmlEmbedded(id));
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -2207,9 +2207,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
|
||||
new SimpleTask<String>() {
|
||||
@Override
|
||||
protected String onExecute(Context context, Bundle args) throws Throwable {
|
||||
protected String onExecute(Context context, Bundle args) throws IOException {
|
||||
long id = args.getLong("id");
|
||||
return getHtmlEmbedded(id);
|
||||
return HtmlHelper.removeTracking(context, getHtmlEmbedded(id));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user