From 98110670b2a72d4b38b07acbfa4240462ba5227a Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Thu, 5 Sep 2024 13:47:06 +0300 Subject: [PATCH] [develop | DONE | CHANGED] adminToolsAPIURL: remove duplicate '/' --- src/app/openaireLibrary | 2 +- src/app/services/help-content.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/openaireLibrary b/src/app/openaireLibrary index 7bb45fe..ad17ffa 160000 --- a/src/app/openaireLibrary +++ b/src/app/openaireLibrary @@ -1 +1 @@ -Subproject commit 7bb45fefa04f7dea80d7679b507030fb22ac7cba +Subproject commit ad17ffaf9510b1252964834aa2f5c2c695201009 diff --git a/src/app/services/help-content.service.ts b/src/app/services/help-content.service.ts index 0d118e0..6388dd1 100644 --- a/src/app/services/help-content.service.ts +++ b/src/app/services/help-content.service.ts @@ -464,7 +464,7 @@ export class HelpContentService { } statisticsIsActiveToggle(apiURL: string, id: string): Observable { - const url = apiURL + '/statistics/' + encodeURIComponent(id) + '/toggle'; + const url = apiURL + 'statistics/' + encodeURIComponent(id) + '/toggle'; return this.http.post(url, {}, CustomOptions.getAuthOptionsWithBody()).pipe(catchError(this.handleError)); } }