Fix CallMessage.duration calculation

This commit is contained in:
Bryan Forbes 2018-08-25 14:44:10 -05:00 committed by Rapptz
parent 427d0aae86
commit b3bfec9119

View File

@ -74,9 +74,9 @@ class CallMessage:
The timedelta object representing the duration. The timedelta object representing the duration.
""" """
if self.ended_timestamp is None: if self.ended_timestamp is None:
return datetime.datetime.utcnow() - self.message.timestamp return datetime.datetime.utcnow() - self.message.created_at
else: else:
return self.ended_timestamp - self.message.timestamp return self.ended_timestamp - self.message.created_at
class GroupCall: class GroupCall:
"""Represents the actual group call from Discord. """Represents the actual group call from Discord.