From 9cd68e9e07ad9a05b2bdec899cc46d47488f5f80 Mon Sep 17 00:00:00 2001 From: tylermanning Date: Thu, 28 Aug 2025 21:32:04 -0400 Subject: [PATCH] fix: Set suffix instead of appending together --- src/frame.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame.ts b/src/frame.ts index 940d55a..15db532 100644 --- a/src/frame.ts +++ b/src/frame.ts @@ -54,7 +54,7 @@ export class CustomFrame { }); if (suffix.pathname !== "/") { - src.pathname += suffix.pathname; + src.pathname = suffix.pathname; } src.hash = suffix.hash || src.hash;