From 91384b633e32ecaa4ee31a6757356ba67d38e500 Mon Sep 17 00:00:00 2001 From: redshift <213178690+1ftredsh@users.noreply.github.com> Date: Thu, 30 Apr 2026 11:20:16 +0530 Subject: [PATCH] fix: use hyphen in addSuffixToId to match removeSuffixFromId --- src/utils/clients.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/clients.ts b/src/utils/clients.ts index 19430c8..be9fca2 100644 --- a/src/utils/clients.ts +++ b/src/utils/clients.ts @@ -27,7 +27,7 @@ export function getNpubSuffix(config: RoutstrdConfig): string | null { * Add suffix to a client ID. */ export function addSuffixToId(id: string, suffix: string): string { - return `${id}_${suffix}`; + return `${id}-${suffix}`; } /**