diff --git a/llama-index-core/llama_index/core/chat_engine/condense_question.py b/llama-index-core/llama_index/core/chat_engine/condense_question.py
index 31b7d6d9b0bcd328aab67c35b4379522e1fa9dae..c90e288a8e732e2365f1dfe829c63976f014d937 100644
--- a/llama-index-core/llama_index/core/chat_engine/condense_question.py
+++ b/llama-index-core/llama_index/core/chat_engine/condense_question.py
@@ -259,7 +259,8 @@ class CondenseQuestionChatEngine(BaseChatEngine):
                 sources=[tool_output],
             )
             thread = Thread(
-                target=response.write_response_to_history, args=(self._memory, True)
+                target=response.write_response_to_history,
+                args=(self._memory,),
             )
             thread.start()
         else: