From f69d282db133a375827f7ffa4ccde8581171fdda Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 3 Aug 2026 00:05:40 -0700 Subject: [PATCH] Fix character code bug. --- src/lib/rpc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.52.0