Skip to content

Commit

Permalink
fix: fixed url issue for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
Vikram Kalta authored and Vikram Kalta committed Jul 21, 2024
1 parent b10dd96 commit 72c56ba
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 72c56ba

Please sign in to comment.