Fix OpenPgpApi extra type confusion (#960)
(cherry picked from commit da167599d2
)
This commit is contained in:
parent
dc3fcbdc8e
commit
859da9d914
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ class PasswordCreationActivity : BasePgpActivity(), OpenPgpServiceConnection.OnB
|
|||
}
|
||||
val gpgIdentifierFileContent = gpgIdentifierFile.useLines { it.firstOrNull() } ?: ""
|
||||
when (val identifier = parseGpgIdentifier(gpgIdentifierFileContent)) {
|
||||
is GpgIdentifier.KeyId -> data.putExtra(OpenPgpApi.EXTRA_KEY_IDS, arrayOf(identifier.id))
|
||||
is GpgIdentifier.KeyId -> data.putExtra(OpenPgpApi.EXTRA_KEY_IDS, arrayOf(identifier.id).toLongArray())
|
||||
is GpgIdentifier.UserId -> data.putExtra(OpenPgpApi.EXTRA_USER_IDS, arrayOf(identifier.email))
|
||||
null -> {
|
||||
snackbar(message = resources.getString(R.string.invalid_gpg_id))
|
||||
|
|
Loading…
Reference in a new issue