Clean up debug crud

This commit is contained in:
Tim Bray
2014-04-28 10:47:39 -07:00
parent e663dadc32
commit ea1032dbfd
2 changed files with 1 additions and 4 deletions

View File

@@ -111,8 +111,8 @@ public class KeybaseKeyServer extends KeyServer {
mKeyCache.put(keybaseID, JWalk.getString(match,"them", "public_keys", "primary", "bundle"));
String name = JWalk.getString(match, "them", "profile", "full_name");
ArrayList<String> userIds = new ArrayList<String>();
name = "keybase.io/" + keybaseID + " " + name;
userIds.add(name);
userIds.add("keybase.io/" + keybaseID); // TODO: Maybe should be keybaseID@keybase.io ?
entry.setUserIds(userIds);
entry.setPrimaryUserId(name);
return entry;