Skip to content

Commit

Permalink
Fix crash with coinbase handle
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Schürmann committed Nov 30, 2016
1 parent 0a99c13 commit 051ed50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/src/main/java/com/textuality/keybase/lib/Proof.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public String getHandle() {
handle = "github.com/" + mNametag;
break;
case PROOF_TYPE_COINBASE:
handle = mNametag.substring("coinbase/".length());
handle = "coinbase.com/" + mNametag;
break;
}
return handle;
Expand Down

0 comments on commit 051ed50

Please sign in to comment.