diff --git a/server/reflector/processors/transcript_final_long_summary.py b/server/reflector/processors/transcript_final_long_summary.py index 45bbcafb..57e36636 100644 --- a/server/reflector/processors/transcript_final_long_summary.py +++ b/server/reflector/processors/transcript_final_long_summary.py @@ -79,7 +79,7 @@ class TranscriptFinalLongSummaryProcessor(Processor): sentence = str(sentence).strip() if sentence.startswith("- "): sentence.replace("- ", "* ") - else: + elif not sentence.startswith("*"): sentence = "* " + sentence sentence += " \n" summary_sentences.append(sentence)