aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/guild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/guild.py b/discord/guild.py
index c67e041f..52199e52 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -261,7 +261,7 @@ class Guild(Hashable):
if 'channels' in data:
channels = data['channels']
for c in channels:
- if c['type'] == ChannelType.text.value:
+ if c['type'] == ChannelType.text.value or c['type'] == ChannelType.news.value:
self._add_channel(TextChannel(guild=self, data=c, state=self._state))
elif c['type'] == ChannelType.voice.value:
self._add_channel(VoiceChannel(guild=self, data=c, state=self._state))