Prevent crash

This commit is contained in:
M66B
2020-07-04 08:06:29 +02:00
parent 95b5c71cf3
commit 8876c1d312

View File

@@ -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);