[AAE-18459] Fix invalidateSession is called when auth is not initilized by js-api (#9152)

* [AAE-18459] Replace all placeholders if the configuration key is an object

* [AAE-18459] don't invalidate session if authentication is not handled by js-api
This commit is contained in:
Amedeo Lepore
2023-12-14 19:51:10 +01:00
committed by GitHub
parent 1f5af31ad0
commit 0932a3ed10
3 changed files with 20 additions and 4 deletions

View File

@@ -207,7 +207,7 @@ export class AlfrescoApi implements Emitter, AlfrescoApiType {
/**@private? */
errorHandler(error: { status?: number }) {
if (error.status === 401) {
if (this.config.oauthInit && error.status === 401) {
this.invalidateSession();
}