fix(signal): preserve case for Base64 group IDs in target normalization (openclaw#10623) thanks @heyhudson

Verified:
- pnpm build
- pnpm check
- pnpm test:macmini

Co-authored-by: heyhudson <258693705+heyhudson@users.noreply.github.com>
Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
This commit is contained in:
Hudson
2026-02-19 23:41:55 -05:00
committed by GitHub
parent ee519086f6
commit 7b81383d44
3 changed files with 8 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ function resolveContextGuardTarget(
}
function normalizeTarget(channel: ChannelId, raw: string): string | undefined {
return normalizeTargetForProvider(channel, raw) ?? raw.trim().toLowerCase();
return normalizeTargetForProvider(channel, raw) ?? raw.trim();
}
function isCrossContextTarget(params: {