Replace button text to cancel TS registration

in RegistrationActivity from "skip" to "cancel", when coming from the reminder

Closes #2219
fork-5.53.8
McLoo 2014-12-14 20:42:26 +01:00 zatwierdzone przez Jake McGinty
rodzic 44a4570870
commit 8af74e93a2
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -23,6 +23,7 @@ public class PushRegistrationReminder extends Reminder {
public void onClick(View v) {
Intent intent = new Intent(context, RegistrationActivity.class);
intent.putExtra("master_secret", masterSecret);
intent.putExtra("cancel_button", true);
context.startActivity(intent);
}
};