mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Merge pull request #4069 from danopia/patch-1
Fix double-slash in failed requests removal URL
This commit is contained in:
commit
95518ffeb7
1 changed files with 1 additions and 1 deletions
|
@ -16,6 +16,6 @@ export class RequestRetryService extends ServiceHelpers {
|
|||
return this.http.get<IFailedRequestsViewModel[]>(this.url, {headers: this.headers});
|
||||
}
|
||||
public deleteFailedRequest(failedId: number): Observable<boolean> {
|
||||
return this.http.delete<boolean>(`${this.url}/${failedId}`, {headers: this.headers});
|
||||
return this.http.delete<boolean>(`${this.url}${failedId}`, {headers: this.headers});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue