fix: correct cache3/user_session3 reference in ADD_SUGG handler
Some checks failed
BotServer CI/CD / build (push) Failing after 45s

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-12 14:21:29 -03:00
parent 74ac734253
commit ff6f2200f0

View file

@ -142,7 +142,7 @@ pub fn add_suggestion_keyword(
let context_name = context.eval_expression_tree(&inputs[0])?.to_string();
let button_text = context.eval_expression_tree(&inputs[1])?.to_string();
add_context_suggestion(cache4.as_ref(), &user_session4, &context_name, &button_text)?;
add_context_suggestion(cache3.as_ref(), &user_session3, &context_name, &button_text)?;
Ok(Dynamic::UNIT)
},