diff options
Diffstat (limited to 'discord/state.py')
| -rw-r--r-- | discord/state.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/state.py b/discord/state.py index 9a996753..dc2619b9 100644 --- a/discord/state.py +++ b/discord/state.py @@ -1013,6 +1013,7 @@ class ConnectionState: if member is not None: timestamp = datetime.datetime.utcfromtimestamp(data.get('timestamp')) + timestamp = timestamp.replace(tzinfo=datetime.timezone.utc) self.dispatch('typing', channel, member, timestamp) def _get_reaction_user(self, channel, user_id): |