Fix malformed url, when requesting data from the "getJobsOfUser" endpoint.
Previously, the url had its parameters starting with "&", instead of "?". The "offset"-param which was prepended with "?" was not the first param of the url!
This commit is contained in:
parent
94b99f8e51
commit
7dfbe3a51c
|
@ -30,11 +30,10 @@ export class MonitorService {
|
|||
|
||||
getJobsOfUser(params: URLParameter[]): Observable<JobsOfUser> {
|
||||
let url = `${this.apiUrl}getJobsOfUser`;
|
||||
if ( params.length > 0 ) {
|
||||
url += `?`
|
||||
for (const param of params) {
|
||||
if (param.key === 'offset') {
|
||||
url += `?${param.key}=${param.value[0]}`;
|
||||
} else {
|
||||
url += `&${param.key}=${param.value[0]}`;
|
||||
url += `${param.key}=${param.value[0]}&`; // An ending "&" in the url does no cause any issues.
|
||||
}
|
||||
}
|
||||
console.log(`knocking on: ${url}`);
|
||||
|
|
Loading…
Reference in New Issue