From: Chris Duncan Date: Mon, 3 Aug 2026 07:05:40 +0000 (-0700) Subject: Fix character code bug. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=f69d282db133a375827f7ffa4ccde8581171fdda;p=libnemo.git Fix character code bug. --- diff --git a/src/lib/rpc.ts b/src/lib/rpc.ts index b605cac..152efaa 100644 --- a/src/lib/rpc.ts +++ b/src/lib/rpc.ts @@ -43,7 +43,7 @@ export class Rpc { const body = JSON.stringify(data) .replaceAll('/', '\\u002f') .replaceAll('<', '\\u003c') - .replaceAll('>', '\\u003d') + .replaceAll('>', '\\u003e') .replaceAll('\\', '\\u005c') const aborter = new AbortController()