fixed the bug: signal group base64 forced to lowercase

This commit is contained in:
jdainireda03-pixel 2026-01-30 11:15:15 +01:00
parent bc432d8435
commit 89c357e0a2

View File

@ -9,7 +9,7 @@ export function normalizeSignalMessagingTarget(raw: string): string | undefined
const lower = normalized.toLowerCase();
if (lower.startsWith("group:")) {
const id = normalized.slice("group:".length).trim();
return id ? `group:${id}`.toLowerCase() : undefined;
return id ? `group:${id}` : undefined;
}
if (lower.startsWith("username:")) {
const id = normalized.slice("username:".length).trim();