Remove unused Message._handle_upgrades function.
This commit is contained in:
parent
8c896e9fbc
commit
01c17704bc
@ -333,23 +333,6 @@ class Message:
|
|||||||
pattern = re.compile('|'.join(transformations.keys()))
|
pattern = re.compile('|'.join(transformations.keys()))
|
||||||
return pattern.sub(repl2, result)
|
return pattern.sub(repl2, result)
|
||||||
|
|
||||||
def _handle_upgrades(self, channel_id):
|
|
||||||
self.guild = None
|
|
||||||
if isinstance(self.channel, Object):
|
|
||||||
return
|
|
||||||
|
|
||||||
if self.channel is None:
|
|
||||||
if channel_id is not None:
|
|
||||||
self.channel = Object(id=channel_id)
|
|
||||||
self.channel.is_private = True
|
|
||||||
return
|
|
||||||
|
|
||||||
if isinstance(self.channel, discord.abc.GuildChannel):
|
|
||||||
self.guild = self.channel.guild
|
|
||||||
found = self.guild.get_member(self.author.id)
|
|
||||||
if found is not None:
|
|
||||||
self.author = found
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def created_at(self):
|
def created_at(self):
|
||||||
"""Returns the message's creation time in UTC."""
|
"""Returns the message's creation time in UTC."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user