Browse Source

Fix IndexError instead of StopIteration when MessageIterator is done (#69)

* Fix IndexError instead of StopIteration when MessageIterator is done

* Make fill() return a boolean based on whether items were added to the
buffer, and update __next__() accordingly
pull/71/head
Moses Miller 7 years ago
committed by Andrei Zbikowski
parent
commit
857b4454a8
  1. 10
      disco/types/channel.py

10
disco/types/channel.py

@ -518,6 +518,8 @@ class MessageIterator(object):
def fill(self): def fill(self):
""" """
Fills the internal buffer up with :class:`disco.types.message.Message` objects from the API. Fills the internal buffer up with :class:`disco.types.message.Message` objects from the API.
Returns a boolean indicating whether items were added to the buffer.
""" """
self._buffer = self.client.api.channels_messages_list( self._buffer = self.client.api.channels_messages_list(
self.channel.id, self.channel.id,
@ -526,7 +528,7 @@ class MessageIterator(object):
limit=self.chunk_size) limit=self.chunk_size)
if not len(self._buffer): if not len(self._buffer):
return return False
self.after = None self.after = None
self.before = None self.before = None
@ -538,6 +540,8 @@ class MessageIterator(object):
self._buffer.reverse() self._buffer.reverse()
self.after = self._buffer[-1].id self.after = self._buffer[-1].id
return True
def next(self): def next(self):
return self.__next__() return self.__next__()
@ -546,7 +550,9 @@ class MessageIterator(object):
def __next__(self): def __next__(self):
if not len(self._buffer): if not len(self._buffer):
self.fill() filled = self.fill()
if not filled:
raise StopIteration
if self.bulk: if self.bulk:
res = self._buffer res = self._buffer

Loading…
Cancel
Save