We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0a05e commit 39e5647Copy full SHA for 39e5647
1 file changed
plugins/CoreHome/vue/src/AjaxHelper/AjaxHelper.ts
@@ -543,7 +543,9 @@ export default class AjaxHelper<T = any> { // eslint-disable-line
543
return;
544
}
545
546
- if (xhr.status === 401) {
+ const isInApp = !document.querySelector('#login_form');
547
+
548
+ if (xhr.status === 401 && isInApp) {
549
Matomo.helper.refreshAfter(0);
550
551
0 commit comments