1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-22 07:42:52 +00:00

Fixed reply to messages without sender

This commit is contained in:
M66B 2018-08-02 20:32:47 +00:00
parent 1240b29404
commit 8c1ad78caf

View file

@ -176,6 +176,7 @@ public class MessageHelper {
static Address[] decodeAddresses(String json) {
List<Address> result = new ArrayList<>();
if (json != null)
try {
JSONArray jaddresses = new JSONArray(json);
for (int i = 0; i < jaddresses.length(); i++) {