Skip to content

Commit

Permalink
Merge pull request Sage-Bionetworks#5593 from jay-hodgson/SWC-7195
Browse files Browse the repository at this point in the history
SWC-7195
  • Loading branch information
jay-hodgson authored Nov 27, 2024
2 parents bab9f5b + f2e06fe commit 5c809e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ private SearchQuery checkForJson(String queryString) {
String fixedQueryString = queryString;
// check for url encoded
if (queryString.startsWith("%7B")) {
fixedQueryString = URL.decode(queryString);
fixedQueryString = URL.decodePathSegment(queryString);
}
if (fixedQueryString.startsWith("{")) {
try {
Expand Down

0 comments on commit 5c809e5

Please sign in to comment.