ambdroid
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
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, |
|
|
|