Skip to content
This repository has been archived by the owner on May 15, 2021. It is now read-only.

Commit

Permalink
Update quote.py
Browse files Browse the repository at this point in the history
  • Loading branch information
code-rgb authored Nov 19, 2020
1 parent 0a21393 commit eddf613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userge/plugins/fun/quote.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async def quotecmd(message: Message):
limit = int(limit)
else:
return await message.err("give valid no. of message to quote", del_in=3)
num = min(limit, 20)
num = min(limit, 24)
async for msg in userge.iter_history(
message.chat.id, limit=num, offset_id=replied.message_id, reverse=True
):
Expand Down

0 comments on commit eddf613

Please sign in to comment.