Browse Source

Fix Poll.duration rounding error

pull/9932/head
ambdroid 7 months ago
committed by GitHub
parent
commit
38bbfed717
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      discord/poll.py

4
discord/poll.py

@ -384,9 +384,9 @@ class Poll:
question_data = data.get('question')
question = question_data.get('text')
expiry = utils.parse_time(data['expiry']) # If obtained via API, then expiry is set.
duration = expiry - message.created_at
# expiry - message.created_at may be a few nanos away from the actual duration
duration = datetime.timedelta(hours=round((expiry - message.created_at).total_seconds() / 3600))
# self.created_at = message.created_at
# duration = self.created_at - expiry
self = cls(
duration=duration,

Loading…
Cancel
Save