1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Improved error message

This commit is contained in:
M66B 2020-04-25 21:34:35 +02:00
parent b0835b8cdd
commit 16d7ed786e

View file

@ -380,7 +380,7 @@ public class MessageHelper {
final ContentType cts = new ContentType(attachment.type);
String micalg = cts.getParameter("micalg");
if (TextUtils.isEmpty(micalg)) {
Log.e("S/MIME micalg missing");
Log.e("S/MIME micalg missing type=" + attachment.type);
micalg = "sha-256";
}
ParameterList params = cts.getParameterList();