Skip to content

Commit 62d5f61

Browse files
Allow verification with PIN rather than SMS when restoring from backup.
1 parent 2586086 commit 62d5f61

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/src/main/java/org/thoughtcrime/securesms/keyvalue/KbsValues.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ void onFirstEverAppLaunch() {
4040
}
4141

4242
@Override
43-
@NonNull List<String> getKeysToIncludeInBackup() {
44-
return Collections.emptyList();
43+
@NonNull
44+
List<String> getKeysToIncludeInBackup() {
45+
return List.of(KBS_AUTH_TOKENS);
4546
}
4647

4748
/**

0 commit comments

Comments
 (0)