We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c5075 commit 0464779Copy full SHA for 0464779
src/app/modules/shared/services/technology.service.ts
@@ -12,7 +12,7 @@ export class TechnologyService {
12
constructor(private http: HttpClient) {}
13
14
getTechnologies(value: string): Observable<Technology> {
15
- const url = `${this.baseUrl}&inname=${value}&site=stackoverflow&key=${STACK_EXCHANGE_ID}&access_token=${STACK_EXCHANGE_ACCESS_TOKEN}`;
+ const url = `${this.baseUrl}&inname=${encodeURIComponent(value)}&site=stackoverflow&key=${STACK_EXCHANGE_ID}&access_token=${STACK_EXCHANGE_ACCESS_TOKEN}`;
16
return this.http.get<Technology>(url);
17
}
18
0 commit comments