Browse Source

Allow HistoryIterator to take limit of 1 even when around is passed

pull/4024/head
hamza1311 5 years ago
committed by Rapptz
parent
commit
0a24e3716e
  1. 2
      discord/iterators.py

2
discord/iterators.py

@ -237,8 +237,6 @@ class HistoryIterator(_AsyncIterator):
raise ValueError("history max limit 101 when specifying around parameter")
elif self.limit == 101:
self.limit = 100 # Thanks discord
elif self.limit == 1:
raise ValueError("Use fetch_message.")
self._retrieve_messages = self._retrieve_messages_around_strategy
if self.before and self.after:

Loading…
Cancel
Save