mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-30 12:32:17 -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));
|
entry.setAlgorithm(KeyFormattingUtils.getAlgorithmInfo(algorithmId, bitStrength, null));
|
||||||
|
|
||||||
ArrayList<String> userIds = new ArrayList<String>();
|
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);
|
userIds.add(name);
|
||||||
|
|
||||||
List<String> proofLabels = match.getProofLabels();
|
List<String> proofLabels = match.getProofLabels();
|
||||||
|
Loading…
Reference in New Issue
Block a user