[3.4] Improve and add more usage of discord timestamps (#5241) (#5292)

* Improve and add more usage of discord timestamps

* How did that whitespace get there?
(cherry picked from commit a0a433b13d)

Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>

Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>
This commit is contained in:
Red-GitHubBot
2021-09-08 22:35:27 +02:00
committed by GitHub
parent ded19fe4fe
commit df19bfe679
4 changed files with 5 additions and 5 deletions

View File

@@ -205,9 +205,9 @@ class ModInfo(MixinMeta):
+ 1
)
created_on = "<t:{0}:D>\n(<t:{0}:R>)".format(user_created)
created_on = "<t:{0}>\n(<t:{0}:R>)".format(user_created)
if joined_at is not None:
joined_on = "<t:{0}:D>\n(<t:{0}:R>)".format(int(joined_at.timestamp()))
joined_on = "<t:{0}>\n(<t:{0}:R>)".format(int(joined_at.timestamp()))
else:
joined_on = _("Unknown")