mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 16:49:40 +01:00
Fix crash from treating mms groups like Signal groups after sms is disabled.
Fixes #12534
This commit is contained in:
committed by
Greyson Parrelli
parent
ba3dd79d4e
commit
3b3dcdcb14
@@ -130,7 +130,7 @@ public class IncomingLollipopMmsConnection extends LollipopMmsConnection impleme
|
||||
|
||||
try {
|
||||
retrieved = (RetrieveConf) new PduParser(baos.toByteArray(), parseContentDisposition).parse();
|
||||
} catch (NullPointerException e) {
|
||||
} catch (AssertionError | NullPointerException e) {
|
||||
Log.w(TAG, "Badly formatted MMS message caused the parser to fail.", e);
|
||||
throw new MmsException(e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user