Prevent crash

pull/183/head
M66B 5 years ago
parent 95b5c71cf3
commit 8876c1d312

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

Loading…
Cancel
Save