|
|
|
@ -14,7 +14,11 @@ public class UnauthorizedReminder extends Reminder {
|
|
|
|
|
super(context.getString(R.string.UnauthorizedReminder_device_no_longer_registered),
|
|
|
|
|
context.getString(R.string.UnauthorizedReminder_this_is_likely_because_you_registered_your_phone_number_with_Signal_on_a_different_device));
|
|
|
|
|
|
|
|
|
|
setOkListener(v -> context.startActivity(new Intent(context, RegistrationActivity.class)));
|
|
|
|
|
setOkListener(v -> {
|
|
|
|
|
Intent intent = new Intent(context, RegistrationActivity.class);
|
|
|
|
|
intent.putExtra(RegistrationActivity.RE_REGISTRATION_EXTRA, true);
|
|
|
|
|
context.startActivity(intent);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|