Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 945e1691 authored by Björn Ekberg's avatar Björn Ekberg Committed by Zoran Jovanovic
Browse files

Fix for storing CPHS MWI messages with store type

CPHS MWI messages of store type were treated as discard type.
This resulted in that no CPHS MWI messages with text was ever
shown to the user.

Change-Id: I42f80a084c35a813933052d4a676e16b2c4e2d9d
parent 58eafee3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -862,10 +862,9 @@ public class SmsMessage extends SmsMessageBase {
            // If the user data is a single space char, do not store
            // the message. Otherwise, store and display as usual
            if (" ".equals(getMessageBody())) {
                ;
            }
                return true;
            }
        }

        return false;
    }