loopback-sdk-builder
loopback-sdk-builder copied to clipboard
Url Parameters not being passed in correctly
What type of issue are you creating?
- [x] Bug
- [ ] Enhancement
- [ ] Question
What version of this module are you using?
- [x] 2.3.1
Write other if any:
Please add a description for your issue:
Url Search Parameters are not being passed in correctly inside of base.service.ts.
search : Object.keys(urlParams).length > 0 ? searchParams.getURLSearchParams() : null
this can be fixed by doing the following
params : Object.keys(urlParams).length > 0 ? urlParams : null