From 234b3967edc8e36e3a11a5c31d080af54e11c914 Mon Sep 17 00:00:00 2001 From: Nicholas Tinsley Date: Wed, 1 May 2024 10:42:23 -0400 Subject: [PATCH] Fix button crash in v1 PIN restore fragment. --- .../org/thoughtcrime/securesms/pin/PinRestoreEntryFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/pin/PinRestoreEntryFragment.java b/app/src/main/java/org/thoughtcrime/securesms/pin/PinRestoreEntryFragment.java index 011e76c8e1..41f3c5ef6d 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/pin/PinRestoreEntryFragment.java +++ b/app/src/main/java/org/thoughtcrime/securesms/pin/PinRestoreEntryFragment.java @@ -72,7 +72,7 @@ public class PinRestoreEntryFragment extends LoggingFragment { RegistrationViewDelegate.setDebugLogSubmitMultiTapView(root.findViewById(R.id.pin_restore_pin_title)); pinEntry = root.findViewById(R.id.pin_restore_pin_input); - pinButton = root.findViewById(R.id.pin_restore_pin_continue); + pinButton = root.findViewById(R.id.pin_restore_pin_confirm); errorLabel = root.findViewById(R.id.pin_restore_pin_input_label); keyboardToggle = root.findViewById(R.id.pin_restore_keyboard_toggle); helpButton = root.findViewById(R.id.pin_restore_forgot_pin);