Skip to content

Commit

Permalink
Merge pull request #194 from contentstack/fix/DX-933
Browse files Browse the repository at this point in the history
fix: fixed url issue for ios
  • Loading branch information
netrajpatel authored Jul 25, 2024
2 parents 8b75387 + 72c56ba commit c65d211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/lib/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function fetchRetry(stack, queryParams, fetchOptions, resolve, reject, retryDela
}


fetch(request.url, request.option)
fetch(encodeURI(request.url), request.option)
.then( function(response) {

if (fetchOptions.debug) fetchOptions.logHandler('info', response);
Expand Down

0 comments on commit c65d211

Please sign in to comment.