diff --git a/core/java/src/net/i2p/data/Destination.java b/core/java/src/net/i2p/data/Destination.java index 6ec59babd..230524d2c 100644 --- a/core/java/src/net/i2p/data/Destination.java +++ b/core/java/src/net/i2p/data/Destination.java @@ -195,7 +195,7 @@ public class Destination extends KeysAndCert { */ public String toBase32() { try { - return Base32.encode(getHash().getData()) + ".b32.i2p"; + return getHash().toBase32(); } catch (IllegalStateException ise) { return null; }