diff options
author | Dan Ho <igaryhe@gmail.com> | 2019-03-15 23:19:49 +0800 |
---|---|---|
committer | Dan Ho <igaryhe@gmail.com> | 2019-03-15 23:19:49 +0800 |
commit | 2ca59d95f962d333f56c714f1e0b97d38db4785a (patch) | |
tree | a799c755209bdc79207d8c611d5c1f3f4e8afc41 /app | |
parent | 9137dadcbd7427569f85d6349ddb0190c1c09bb7 (diff) |
fixed accidental newlines
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt b/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt index 4e3b756c..81a79d05 100644 --- a/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt +++ b/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt @@ -307,8 +307,7 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { entry.totpSecret, Date().time / (1000 * entry.totpPeriod), entry.totpAlgorithm, - entry.digits - ) + entry.digits) ) } crypto_otp_show.text = @@ -316,8 +315,7 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { entry.totpSecret, Date().time / (1000 * entry.totpPeriod), entry.totpAlgorithm, - entry.digits - ) + entry.digits) } else { // we only want to calculate and show HOTP if the user requests it crypto_copy_otp.setOnClickListener { |