mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 07:57:30 +00:00
Fall back to user-configured MMS params on SecurityException
This commit is contained in:
parent
8e720e0ede
commit
68c29f283d
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user