Fix for bug that could drop unencrypted MMS on KitKat.

pull/1/head
Moxie Marlinspike 12 years ago
parent 7489f3463a
commit 7c2fb74af4

@ -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))
{

Loading…
Cancel
Save