Skip to content

Commit

Permalink
Fix bad merge where security level was omitted
Browse files Browse the repository at this point in the history
  • Loading branch information
oblador committed Feb 13, 2019
1 parent c73c872 commit b2e54cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public EncryptionResult encrypt(@NonNull String service, @NonNull String usernam
if (retry) {
retry = false;
keyStore.deleteEntry(service);
return encrypt(service, username, password);
return encrypt(service, username, password, level);
} else {
throw ex;
}
Expand Down

0 comments on commit b2e54cc

Please sign in to comment.