Skip to content

Commit

Permalink
chore(javascript): broken tests
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#2767

Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
  • Loading branch information
algolia-bot and shortcuts committed Feb 23, 2024
1 parent 446b76e commit f81a267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client-common/src/transporter/helpers.ts
Expand Up @@ -31,7 +31,7 @@ export function serializeUrl(
): string {
const queryParametersAsString = serializeQueryParameters(queryParameters);
let url = `${host.protocol}://${host.url}${host.port ? `:${host.port}` : ''}/${
path.charAt(0) === '/' ? path.substr(1) : path
path.charAt(0) === '/' ? path.substring(1) : path
}`;

if (queryParametersAsString.length) {
Expand Down

0 comments on commit f81a267

Please sign in to comment.