fix(reliability): replace undefined session_exists with session_get check
Neuron Soul CI / build (pull_request) Failing after 13m25s
Neuron Soul CI / build (pull_request) Failing after 13m25s
This commit is contained in:
@@ -649,7 +649,7 @@ fn handle_chat_agentic(body: String) -> String {
|
|||||||
let session_valid: Bool = if str_eq(req_session, "") {
|
let session_valid: Bool = if str_eq(req_session, "") {
|
||||||
true
|
true
|
||||||
} else {
|
} else {
|
||||||
session_exists(req_session)
|
!str_contains(session_get(req_session), "\"error\"")
|
||||||
}
|
}
|
||||||
if !session_valid {
|
if !session_valid {
|
||||||
return "{\"error\":\"session not found\",\"session_id\":\"" + req_session + "\",\"reply\":\"\"}"
|
return "{\"error\":\"session not found\",\"session_id\":\"" + req_session + "\",\"reply\":\"\"}"
|
||||||
|
|||||||
Reference in New Issue
Block a user