aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/embeds.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/discord/embeds.py b/discord/embeds.py
index 5dcc92a8..88123cbc 100644
--- a/discord/embeds.py
+++ b/discord/embeds.py
@@ -509,7 +509,10 @@ class Embed:
pass
else:
if timestamp:
- result['timestamp'] = timestamp.astimezone(tz=datetime.timezone.utc).isoformat()
+ if timestamp.tzinfo:
+ result['timestamp'] = timestamp.astimezone(tz=datetime.timezone.utc).isoformat()
+ else:
+ result['timestamp'] = timestamp.replace(tzinfo=timezone.utc).isoformat()
# add in the non raw attribute ones
if self.type: