From 9e3375f3fce0caa3d11ef50dbcd4c06dd5f56a71 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 29 Apr 2022 10:00:33 -0400 Subject: [PATCH] Fix infinite recursion in TextChannel.type --- discord/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/channel.py b/discord/channel.py index 8542f14cb..64b4dbfaf 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -201,7 +201,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): @property def type(self) -> Literal[ChannelType.text, ChannelType.news]: """:class:`ChannelType`: The channel's Discord type.""" - if self.type == 0: + if self._type == 0: return ChannelType.text return ChannelType.news