mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-23 11:15:44 +00:00
Fix for bug that could drop unencrypted MMS on KitKat.
This commit is contained in:
@@ -51,7 +51,7 @@ public class MmsListener extends BroadcastReceiver {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT &&
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT ||
|
||||
PreferenceManager.getDefaultSharedPreferences(context)
|
||||
.getBoolean(ApplicationPreferencesActivity.ALL_MMS_PERF, true))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user