Skip to content

Commit

Permalink
fix(Utils): fix normalyzeUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
elias75015 committed Mar 15, 2024
1 parent 3eda1ee commit c054efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/Helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ var Helper = {

if (params) {
if (typeof params === "string") {
params = params.replace("?", "&");
params = params.replace("?", "");
myUrl += params;
} else {
myUrl += this.normalyzeParameters(params);
Expand Down

0 comments on commit c054efe

Please sign in to comment.