Skip to content

Commit

Permalink
No longer upper-case fingerprint
Browse files Browse the repository at this point in the history
  • Loading branch information
timbray committed Aug 19, 2014
1 parent f3d882c commit 2e8f38f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/src/main/java/com/textuality/keybase/lib/Match.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public String getKeyID() throws KeybaseException {
fingerprint = fingerprint.substring(fingerprint.length() - 16);
}

return fingerprint.replace(" ", "").toUpperCase();
return fingerprint.replace(" ", "");
}
public String getUsername() throws KeybaseException{
try {
Expand Down

0 comments on commit 2e8f38f

Please sign in to comment.