From c959806efb9a6e4eaa80cc76a21b92c0d8bbaef7 Mon Sep 17 00:00:00 2001 From: andrei Date: Wed, 26 Jul 2017 11:39:27 -0700 Subject: [PATCH] [channel] add parent_id --- disco/types/channel.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/disco/types/channel.py b/disco/types/channel.py index 6003c30..1a1dcb1 100644 --- a/disco/types/channel.py +++ b/disco/types/channel.py @@ -126,6 +126,7 @@ class Channel(SlottedModel, Permissible): nsfw = Field(bool) type = Field(enum(ChannelType)) overwrites = AutoDictField(PermissionOverwrite, 'id', alias='permission_overwrites') + parent_id = Field(snowflake) def __init__(self, *args, **kwargs): super(Channel, self).__init__(*args, **kwargs) @@ -466,10 +467,10 @@ class MessageIterator(object): Fills the internal buffer up with :class:`disco.types.message.Message` objects from the API. """ self._buffer = self.client.api.channels_messages_list( - self.channel.id, - before=self.before, - after=self.after, - limit=self.chunk_size) + self.channel.id, + before=self.before, + after=self.after, + limit=self.chunk_size) if not len(self._buffer): return