Skip to content

Commit

Permalink
fixed filter $ &
Browse files Browse the repository at this point in the history
  • Loading branch information
all4cloud committed Jul 13, 2022
1 parent 1021869 commit 63fd4b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public int execute() throws ODataProducerException {
}

if(filter != null) {
uri = uri + "?&filter=" + filter;
uri = uri + "?$filter=" + filter;
}

ODataClientRequest request = ODataClientRequest.get(uri);
Expand Down

0 comments on commit 63fd4b8

Please sign in to comment.