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

Commit 5d875796 authored by Robert Greenwalt's avatar Robert Greenwalt
Browse files

Fix string in sms_short_code confirm dialog.

Typo used the wrong string giving "allow, allow" options after toggling
the remember-my-choice checkbox.

bug:7198380
Change-Id: Ia9bf3da44a1153838c618bd8c6b722235629e853
parent 167a784e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1357,7 +1357,7 @@ public abstract class SMSDispatcher extends Handler {
                mNegativeButton.setText(R.string.sms_short_code_confirm_never_allow);
            } else {
                mPositiveButton.setText(R.string.sms_short_code_confirm_allow);
                mNegativeButton.setText(R.string.sms_short_code_confirm_allow);
                mNegativeButton.setText(R.string.sms_short_code_confirm_deny);
            }
        }
    }