Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit 6fbdedc

Browse files
committed
🐛 Fix prefix missing after addQueryString
(cherry picked from commit 0da747c)
1 parent 8299b7c commit 6fbdedc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/Request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class Request {
108108
}
109109
//normalize query string
110110
if (!isEmpty(options.qs)) {
111-
url = this.addQueryString(url, options.qs);
111+
url = this.addQueryString(url, options.qs, undefined, false);
112112
}
113113
//normalize headers
114114
const headers = {};

0 commit comments

Comments
 (0)