mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-24 07:58:50 -05:00
Dont show key_unavailable on pub keys
This commit is contained in:
parent
afc20602eb
commit
605e37f089
@ -162,7 +162,8 @@ public class SubkeysAdapter extends CursorAdapter {
|
||||
algorithmStr += ", " + context.getString(R.string.key_no_passphrase);
|
||||
break;
|
||||
case UNAVAILABLE:
|
||||
algorithmStr += ", " + context.getString(R.string.key_unavailable);
|
||||
// don't show this on pub keys
|
||||
//algorithmStr += ", " + context.getString(R.string.key_unavailable);
|
||||
break;
|
||||
}
|
||||
vKeyDetails.setText(algorithmStr);
|
||||
|
Loading…
Reference in New Issue
Block a user