ソースを参照

Fix Android App crashes on sign in

Fixes: https://github.com/lesspass/lesspass/issues/416
pull/418/head
Guillaume Vincent 5年前
コミット
2e4a22ce03
1個のファイルの変更6行の追加8行の削除
  1. +6
    -8
      mobile/src/auth/authActions.js

+ 6
- 8
mobile/src/auth/authActions.js ファイルの表示

@@ -28,14 +28,12 @@ function getEncryptedCredentials(credentials) {
return generatePassword(credentials.password, {
site: "lesspass.com",
login: credentials.email,
options: {
lowercase: true,
uppercase: true,
digits: true,
symbols: true,
length: 16,
counter: 1
}
lowercase: true,
uppercase: true,
digits: true,
symbols: true,
length: 16,
counter: 1
}).then(encryptedPassword => ({
email: credentials.email,
password: encryptedPassword


読み込み中…
キャンセル
保存