Small improvement

This commit is contained in:
M66B
2021-09-08 12:34:36 +02:00
parent 73566b6de2
commit a23497543a
3 changed files with 3 additions and 3 deletions

View File

@@ -387,7 +387,7 @@ public class FragmentOptionsEncryption extends FragmentBase implements SharedPre
try {
int maxKeySize = javax.crypto.Cipher.getMaxAllowedKeyLength("AES");
tvKeySize.setText(getString(R.string.title_advanced_aes_key_size,
Helper.humanReadableByteCount(maxKeySize)));
Helper.humanReadableByteCount(maxKeySize, false)));
} catch (NoSuchAlgorithmException ex) {
tvKeySize.setText(Log.formatThrowable(ex));
}