fix: subscriber ctx var update logic

This commit is contained in:
Mohamed Marrouchi 2025-03-25 15:01:50 +01:00
parent c91bf8c4f7
commit 45402fbcce

View File

@ -124,9 +124,8 @@ export class ConversationService extends BaseService<
`Adding context var to subscriber: ${capture.context_var} = ${contextValue}`,
);
profile.context.vars[capture.context_var] = contextValue;
} else {
convo.context!.vars[capture.context_var] = contextValue;
}
convo.context!.vars[capture.context_var] = contextValue;
});
}