fixed the bug: signal group base64 forced to lowercase
This commit is contained in:
parent
bc432d8435
commit
89c357e0a2
@ -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();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user