From debf41e76286071450bd9cf1df7277a578bd1b89 Mon Sep 17 00:00:00 2001 From: VitoAlbano Date: Sat, 17 May 2025 00:43:15 +0100 Subject: [PATCH] [ci:force] - recreate lock --- lib/js-api/src/alfrescoApi.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/js-api/src/alfrescoApi.ts b/lib/js-api/src/alfrescoApi.ts index 53cb5b4c22..2585a6a8cb 100644 --- a/lib/js-api/src/alfrescoApi.ts +++ b/lib/js-api/src/alfrescoApi.ts @@ -436,7 +436,9 @@ export class AlfrescoApi implements Emitter, AlfrescoApiType { if (this.isEcmConfiguration()) { const contentPromise = this.contentAuth.logout(); contentPromise.then( - () => (this.config.ticket = undefined), + (): void => { + this.config.ticket = undefined; + }, () => {} ); return contentPromise;