normalize-policy phase-4: remove extra trim/lower from language/trigger/context handling

This commit is contained in:
DBT
2026-02-27 17:06:53 +00:00
parent 4a9baf91ca
commit 9feb4d0c53
3 changed files with 9 additions and 11 deletions

View File

@@ -174,8 +174,8 @@ func (cb *ContextBuilder) shouldLoadBootstrap() bool {
if idErr != nil || userErr != nil {
return true
}
idText := strings.TrimSpace(string(identityData))
userText := strings.TrimSpace(string(userData))
idText := string(identityData)
userText := string(userData)
if idText == "" || userText == "" {
return true
}