mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-14 21:05:09 -05:00
open ViewKeyActivity by subkey in NfcBaseActivity
This commit is contained in:
parent
a79d7bd1c2
commit
fb96b6dfa9
@ -222,11 +222,12 @@ public abstract class BaseNfcActivity extends BaseActivity {
|
|||||||
final String nfcUserId = nfcGetUserId();
|
final String nfcUserId = nfcGetUserId();
|
||||||
final byte[] nfcAid = nfcGetAid();
|
final byte[] nfcAid = nfcGetAid();
|
||||||
|
|
||||||
final long masterKeyId = KeyFormattingUtils.getKeyIdFromFingerprint(nfcFingerprints);
|
final long subKeyId = KeyFormattingUtils.getKeyIdFromFingerprint(nfcFingerprints);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
CachedPublicKeyRing ring = new ProviderHelper(this).getCachedPublicKeyRing(masterKeyId);
|
CachedPublicKeyRing ring = new ProviderHelper(this).getCachedPublicKeyRing(
|
||||||
ring.getMasterKeyId();
|
KeyRings.buildUnifiedKeyRingsFindBySubkeyUri(subKeyId));
|
||||||
|
long masterKeyId = ring.getMasterKeyId();
|
||||||
|
|
||||||
Intent intent = new Intent(
|
Intent intent = new Intent(
|
||||||
BaseNfcActivity.this, ViewKeyActivity.class);
|
BaseNfcActivity.this, ViewKeyActivity.class);
|
||||||
|
Loading…
Reference in New Issue
Block a user