Skip to content

Commit 9526b23

Browse files
committed
fix(search): fixed an issue with search when not using GCF
1 parent 292201a commit 9526b23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xivapi.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,6 @@ export class XivapiService {
257257
const queryString: string = queryParams.toString();
258258
return this.http.get<T>(this.GCFUrl, {params: {url: btoa(`${url}${queryString.length > 0 ? `?${queryString}` : ''}`)}});
259259
}
260-
return this.http.get<T>(url);
260+
return this.http.get<T>(url, {params: queryParams});
261261
}
262262
}

0 commit comments

Comments
 (0)