diff --git a/src/org/thoughtcrime/securesms/mms/MmsCommunication.java b/src/org/thoughtcrime/securesms/mms/MmsCommunication.java index 3c48304a28..184042b3a2 100644 --- a/src/org/thoughtcrime/securesms/mms/MmsCommunication.java +++ b/src/org/thoughtcrime/securesms/mms/MmsCommunication.java @@ -96,6 +96,9 @@ public class MmsCommunication { } catch (SQLiteException sqe) { Log.w("MmsCommunication", sqe); return getLocallyConfiguredMmsConnectionParameters(context); + } catch (SecurityException se) { + Log.w("MmsCommunication", se); + return getLocallyConfiguredMmsConnectionParameters(context); } finally { if (cursor != null) cursor.close();