Skip to content

Commit

Permalink
Fix mentionall for topic
Browse files Browse the repository at this point in the history
Signed-off-by: Yasir Aris M <[email protected]>
  • Loading branch information
yasirarism committed Nov 17, 2023
1 parent 277577a commit f9c2e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misskaty/plugins/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,6 @@ async def mention(app: Client, msg: types.Message):

for i in range(0, len(total), NUM):
message = ' '.join(total[i:i+NUM])
await app.send_message(msg.chat.id, message)
await app.send_message(msg.chat.id, message, message_thread_id=msg.message_thread_id)
else:
await app.send_message(msg.chat.id, 'Admins only can do that !', reply_to_message_id=msg.id)

0 comments on commit f9c2e72

Please sign in to comment.