mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-03 23:56:07 +02:00
Prevent crash
This commit is contained in:
@@ -564,7 +564,7 @@ public class ServiceSend extends ServiceBase {
|
||||
|
||||
Address[] to = imessage.getAllRecipients();
|
||||
String via = "via " + ident.host + "/" + ident.user +
|
||||
" to " + TextUtils.join(", ", to);
|
||||
" to " + (to == null ? null : TextUtils.join(", ", to));
|
||||
|
||||
// Send message
|
||||
EntityLog.log(this, "Sending " + via);
|
||||
|
||||
Reference in New Issue
Block a user