Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/95518ffeb75a1738ddc5c0c74cdf434ff8ec9073 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from danopia/patch-1

Fix double-slash in failed requests removal URL
pull/4072/head v4.0.1122
Jamie 4 years ago committed by GitHub
commit 95518ffeb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save