Skip to content

Commit

Permalink
fix(search): 馃悰 avoid double escape for equal sign
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair3149 committed Aug 7, 2023
1 parent 0281037 commit b015647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/skins.citizen.search/searchClients/smwAskApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function smwAskApiSearchClient( config ) {
api_version: '3',
conditions: getConditions(),
printouts: getPrintouts(),
parameters: `limit%3D${limit.toString()}`
parameters: `limit=${limit.toString()}`
};
/* eslint-enable camelcase */
const search = new URLSearchParams( params );
Expand Down

0 comments on commit b015647

Please sign in to comment.