Log contact class name

This commit is contained in:
M66B 2022-03-01 15:39:56 +01:00
parent ea400ffd34
commit 93e5dd679a
1 changed files with 3 additions and 1 deletions

View File

@ -2931,8 +2931,10 @@ public class MessageHelper {
charset = StandardCharsets.ISO_8859_1;
}
result = Helper.readStream((InputStream) content, charset);
} else
} else {
Log.e(content.getClass().getName());
result = content.toString();
}
} catch (IOException | FolderClosedException | MessageRemovedException ex) {
throw ex;
} catch (Throwable ex) {