We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 292201a commit 9526b23Copy full SHA for 9526b23
src/xivapi.service.ts
@@ -257,6 +257,6 @@ export class XivapiService {
257
const queryString: string = queryParams.toString();
258
return this.http.get<T>(this.GCFUrl, {params: {url: btoa(`${url}${queryString.length > 0 ? `?${queryString}` : ''}`)}});
259
}
260
- return this.http.get<T>(url);
+ return this.http.get<T>(url, {params: queryParams});
261
262
0 commit comments