1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

App | Minor fixes | Recovery phrase naming (#2241)

This commit is contained in:
Evgenii Kozlov 2022-05-07 14:56:05 +03:00 committed by GitHub
parent 6e5d0dc3d7
commit 8e678c95d4
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View file

@ -60,7 +60,7 @@ class DefaultAuthCache(
nonEncryptedMnemonic
} else {
val encryptedMnemonic = encryptedPrefs.getString(MNEMONIC_KEY, null)
encryptedMnemonic ?: throw IllegalStateException("Mnemonic is missing")
encryptedMnemonic ?: throw IllegalStateException("Recovery phrase is missing")
}
}