From ff6dfcf126dc20ff8a46d3ac44ef04045cfaf268 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Mon, 6 Apr 2026 13:37:40 -0300 Subject: [PATCH] chat.html: pass session_id to auth endpoint for consistent session --- ui/suite/partials/chat.html | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/suite/partials/chat.html b/ui/suite/partials/chat.html index 742ecd5..791d823 100644 --- a/ui/suite/partials/chat.html +++ b/ui/suite/partials/chat.html @@ -1458,6 +1458,7 @@ var authUrl = "/api/auth?bot_name=" + encodeURIComponent(botName); if (stored.user_id) authUrl += "&user_id=" + encodeURIComponent(stored.user_id); + if (stored.session_id) authUrl += "&session_id=" + encodeURIComponent(stored.session_id); fetch(authUrl) .then(function (response) {