normalize-policy: preserve raw casing/spacing in action-content sensitive paths (phase-3)

This commit is contained in:
DBT
2026-02-27 16:48:29 +00:00
parent aeb285a7a1
commit a75be4b618
2 changed files with 4 additions and 7 deletions

View File

@@ -9,7 +9,6 @@ package channels
import (
"context"
"fmt"
"strings"
"sync"
"sync/atomic"
@@ -298,7 +297,7 @@ func (m *Manager) dispatchOutbound(ctx context.Context) {
continue
}
action := strings.ToLower(strings.TrimSpace(msg.Action))
action := msg.Action
if action == "" {
action = "send"
}