Fix wrong password key in Migrations

This commit is contained in:
Shinokuni 2024-08-30 18:25:29 +02:00
parent e0fcf265f5
commit be865aa7f9
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ object Migrations {
oldPreferences.getString(account.passwordKey, null)?.run {
encryptedPreferences.edit()
.putString(account.password, this)
.putString(account.passwordKey, this)
.apply()
oldPreferences.edit()