소스 검색

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


불러오는 중...
취소
저장