mean-expert-official / loopback-sdk-builder

Tool for auto-generating Software Development Kits (SDKs) for LoopBack
Other
399 stars 178 forks source link

Url Parameters not being passed in correctly #598

Open jonathanRinciari opened 6 years ago

jonathanRinciari commented 6 years ago

What type of issue are you creating?

What version of this module are you using?

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