From 87ada90ca01cf6d472702a1ad0937f11bfe6f31e Mon Sep 17 00:00:00 2001 From: gsd Date: Wed, 10 Jun 2026 23:15:06 +0300 Subject: [PATCH] ss --- other_ext/kamaz_ai.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/other_ext/kamaz_ai.py b/other_ext/kamaz_ai.py index 47af2af..c080cb1 100644 --- a/other_ext/kamaz_ai.py +++ b/other_ext/kamaz_ai.py @@ -264,7 +264,11 @@ class Extension: value=f'{self.actions.get(ss["action"], [ss["action"], 100])[0]}', inline=False) - embed.set_footer(text=",".join([report_id] + result.get("similar_reports", []))) + same_reports = [] + same_reports.append(str(report_id)) + for s in result.get("similar_reports", []): + same_reports.append(str(s)) + embed.set_footer(text=",".join(same_reports)) response = await message.reply(embed=embed) try: await response.add_reaction('👍')