Skip to content

Commit

Permalink
replace chars (whitespace / ') for correct filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
all4cloud committed Jul 13, 2022
1 parent 63fd4b8 commit 9a2237e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public int execute() throws ODataProducerException {
}

if(filter != null) {
filter = filter.replaceAll(" ", "%20").replaceAll("'", "%27");
uri = uri + "?$filter=" + filter;
}

Expand Down

0 comments on commit 9a2237e

Please sign in to comment.