We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f9654c commit 0634700Copy full SHA for 0634700
mautrix/types/event/message.py
@@ -350,7 +350,9 @@ def trim_reply_fallback(self) -> None:
350
setattr(self, "__reply_fallback_trimmed", True)
351
352
def _trim_reply_fallback_text(self) -> None:
353
- if not self.body.startswith("> <") or "\n" not in self.body:
+ if (
354
+ not self.body.startswith("> <") and not self.body.startswith("> * <")
355
+ ) or "\n" not in self.body:
356
return
357
lines = self.body.split("\n")
358
while len(lines) > 0 and lines[0].startswith("> "):
0 commit comments