From e188f62d7075215a2ac79a9760f41556ecbb4fe1 Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Sun, 23 Feb 2014 14:39:07 -0800 Subject: [PATCH] Shunt BCC messages directly to MMS transport. --- .../thoughtcrime/securesms/transport/UniversalTransport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/transport/UniversalTransport.java b/src/org/thoughtcrime/securesms/transport/UniversalTransport.java index ab216e04b1..361f5c8927 100644 --- a/src/org/thoughtcrime/securesms/transport/UniversalTransport.java +++ b/src/org/thoughtcrime/securesms/transport/UniversalTransport.java @@ -100,7 +100,7 @@ public class UniversalTransport { throws UndeliverableMessageException, RetryLaterException, UntrustedIdentityException { if (Util.isEmpty(mediaMessage.getTo())) { - throw new UndeliverableMessageException("No destination specified"); + return mmsTransport.deliver(mediaMessage); } if (GroupUtil.isEncodedGroup(mediaMessage.getTo()[0].getString())) {