Commit 0bb97a5
Dominic Luechinger
Fix issue with endpoint url containing an '?'
If the endpoint looks like this 'customer?action=list' and a query
string is passed to executePsr7Endpoint() the resulting
uri is broken.
Endpoint: /customer?action=list
QueryParam: sort=creation_date
Expected result:
/customer?action=list&sort=creation_date
Actual result:
/customer?action=list?sort=creation_date
---------------------^------------------1 parent 4813fb7 commit 0bb97a5
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
| 45 | + | |
45 | 46 | | |
46 | 47 | | |
47 | 48 | | |
| |||
0 commit comments