Closed cherifGsoul closed 11 months ago
Handle cases like: filter[name][$eq]=\x00 where \x00 is the decoded value of %00 that reprsents NULL value passed the query string -> decodeURIComponent("%00")
filter[name][$eq]=\x00
\x00
%00
NULL
decodeURIComponent("%00")
Handle cases like:
filter[name][$eq]=\x00
where\x00
is the decoded value of%00
that reprsentsNULL
value passed the query string ->decodeURIComponent("%00")