Fix for bug that could drop unencrypted MMS on KitKat.
This commit is contained in:
parent
7489f3463a
commit
7c2fb74af4
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue