From: Chris Duncan Date: Fri, 8 Aug 2025 18:48:05 +0000 (-0700) Subject: Fix contact info sanitization. X-Git-Tag: v0.10.5~43^2~13 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=bd9b8f9bc30548cfe1702c78ec98b171b55847df;p=libnemo.git Fix contact info sanitization. --- diff --git a/src/lib/rolodex.ts b/src/lib/rolodex.ts index 9c23b0e..8bd0e3b 100644 --- a/src/lib/rolodex.ts +++ b/src/lib/rolodex.ts @@ -42,7 +42,7 @@ export class Rolodex { name = name .replaceAll('/', '\\u002f') .replaceAll('<', '\\u003c') - .replaceAll('>', '\\u003d') + .replaceAll('>', '\\u003e') .replaceAll('\\', '\\u005c') const account = Account.import(address)