mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-27 19:22:14 -05:00
Merge pull request #871 from timbray/master
Handle absence of personal information in Keybase search result
This commit is contained in:
commit
1dd68c7120
@ -82,7 +82,10 @@ public class KeybaseKeyserver extends Keyserver {
|
||||
entry.setAlgorithm(KeyFormattingUtils.getAlgorithmInfo(algorithmId, bitStrength, null));
|
||||
|
||||
ArrayList<String> userIds = new ArrayList<String>();
|
||||
String name = fullName + " <keybase.io/" + username + ">";
|
||||
String name = "<keybase.io/" + username + ">";
|
||||
if (fullName != null) {
|
||||
name = fullName + " " + name;
|
||||
}
|
||||
userIds.add(name);
|
||||
|
||||
List<String> proofLabels = match.getProofLabels();
|
||||
|
Loading…
Reference in New Issue
Block a user