You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 26, 2023. It is now read-only.
For the usage with jira there are a lot of GEt methods that are not using query parameters.
So the calls are being normally without path?anything
And if we use those calls normally to get results the new JWTHelper have a error in the qsh function
PART:
// Parse a query into the map of parameters
parse_str($parts['query'], $params);
It is trying to get query parts but there isnt any query parts.
For the usage with jira there are a lot of GEt methods that are not using query parameters.
So the calls are being normally without path?anything
And if we use those calls normally to get results the new JWTHelper have a error in the qsh function
PART:
// Parse a query into the map of parameters
parse_str($parts['query'], $params);
It is trying to get query parts but there isnt any query parts.
Change:
$params=array();
if(isset($parts['query']))
parse_str($parts['query'], $params);
Could you make change here because a lot of projects are using this so I dont need to update everyone manually
The text was updated successfully, but these errors were encountered: