1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-01 01:06:11 +00:00

Improved debug info

This commit is contained in:
M66B 2024-07-27 22:22:37 +02:00
parent 73201f7e81
commit 31c16abbc6

View file

@ -2468,8 +2468,10 @@ public class HtmlHelper {
Uri uri = FileProviderEx.getUri(context, BuildConfig.APPLICATION_ID, file, attachment.name);
img.attr("src", uri.toString());
Log.i("Inline image uri=" + uri);
} else
} else {
img.attr("src", ImageHelper.getDataUri(file, attachment.type));
Log.i("Inline image type=" + attachment.type);
}
}
}
}