Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #9 from Ra0k/patch-1
Browse files Browse the repository at this point in the history
Remove column name sanitization
  • Loading branch information
nedpals authored Dec 16, 2024
2 parents fff4d85 + afc867e commit cab1104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/request_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func (b *FilterRequestBuilder) Filter(column, operator, criteria string) *Filter
b.negateNext = false
operator = "not." + operator
}
b.params.Add(SanitizeParam(column), operator+"."+criteria)
b.params.Add(column, operator+"."+criteria)
return b
}

Expand Down

0 comments on commit cab1104

Please sign in to comment.