mirror of
https://github.com/moparisthebest/open-keychain
synced 2025-02-19 20:31:52 -05:00
Fix construction of algorithmID in Keybase result lists
This commit is contained in:
parent
9dc22ef510
commit
018ca6abad
@ -76,10 +76,10 @@ public class KeybaseKeyserver extends Keyserver {
|
|||||||
// store extra info, so we can query for the keybase id directly
|
// store extra info, so we can query for the keybase id directly
|
||||||
entry.setExtraData(username);
|
entry.setExtraData(username);
|
||||||
|
|
||||||
final int algorithmId = match.getAlgorithmId();
|
|
||||||
entry.setAlgorithm(PgpKeyHelper.getAlgorithmInfo(algorithmId, null, null));
|
|
||||||
final int bitStrength = match.getBitStrength();
|
final int bitStrength = match.getBitStrength();
|
||||||
entry.setBitStrength(bitStrength);
|
entry.setBitStrength(bitStrength);
|
||||||
|
final int algorithmId = match.getAlgorithmId();
|
||||||
|
entry.setAlgorithm(PgpKeyHelper.getAlgorithmInfo(algorithmId, bitStrength, null));
|
||||||
|
|
||||||
ArrayList<String> userIds = new ArrayList<String>();
|
ArrayList<String> userIds = new ArrayList<String>();
|
||||||
String name = fullName + " <keybase.io/" + username + ">";
|
String name = fullName + " <keybase.io/" + username + ">";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user