mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-04 22:40:32 +00:00
Prevent crash
This commit is contained in:
parent
de158337f9
commit
d38575caae
1 changed files with 1 additions and 1 deletions
|
@ -5558,7 +5558,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
|
||||
// Check headers for resend
|
||||
for (TupleMessageEx message : messages) {
|
||||
if (message.headers == null)
|
||||
if (message == null || message.headers == null)
|
||||
continue;
|
||||
boolean resend = iProperties.getValue("resend", message.id);
|
||||
if (!resend)
|
||||
|
|
Loading…
Reference in a new issue