fix(telegram,core): bare seeds stay silent in telegram

This commit is contained in:
hh
2026-08-28 18:42:35 +02:00
parent 7b0c61c18e
commit 7240e0cdac
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -459,6 +459,12 @@ async def test_commands_status_merge_and_new(stack: Stack) -> None:
frontend="telegram", external_id=f"{USER}/902"
)
assert child is not None and child.title == "отчёт"
await stack.world.settle(child, 1)
await asyncio.sleep(0.2)
assert all(m["thread"] != 902 for m in stack.bot.sent)
stack.bot.message("первое в новый топик", thread=902)
reply = await stack.until(lambda: stack.sent_with("первое в новый топик"), what="r")
assert reply["thread"] == 902
assert await stack.tg.mark_topic(child)
assert stack.bot.topics[-1] == "edit:902:✅ отчёт"