Fix dynamic permissions problem for MMS messages

This commit is contained in:
Moxie Marlinspike
2017-12-20 11:21:00 -08:00
parent 425d6b8adf
commit 512dc19471
2 changed files with 10 additions and 2 deletions

View File

@@ -172,7 +172,7 @@ public class MmsSendJob extends SendJob {
throws UndeliverableMessageException
{
SendReq req = new SendReq();
String lineNumber = Utils.getMyPhoneNumber(context);
String lineNumber = getMyNumber(context);
Address destination = message.getRecipient().getAddress();
MediaConstraints mediaConstraints = MediaConstraints.getMmsMediaConstraints(message.getSubscriptionId());
List<Attachment> scaledAttachments = scaleAttachments(masterSecret, mediaConstraints, message.getAttachments());
@@ -287,4 +287,12 @@ public class MmsSendJob extends SendJob {
MessageNotifier.notifyMessageDeliveryFailed(context, recipient, threadId);
}
}
private String getMyNumber(Context context) throws UndeliverableMessageException {
try {
return Utils.getMyPhoneNumber(context);
} catch (SecurityException e) {
throw new UndeliverableMessageException(e);
}
}
}