diff options
| author | 2023-09-04 21:17:58 +0100 | |
|---|---|---|
| committer | 2023-09-04 21:17:58 +0100 | |
| commit | 4feedd048c917f17e85711e18f9f4e375ec82320 (patch) | |
| tree | c74ae8fcb6fca28f7a651b92fda1a99b3c24a3fb | |
| parent | Don't use netloc as a hostname, use hostname + port separately (diff) | |
Use `thread.created_at` to determine thread creation
| -rw-r--r-- | metricity/exts/event_listeners/_utils.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/metricity/exts/event_listeners/_utils.py b/metricity/exts/event_listeners/_utils.py index 69d44ab..4006ea2 100644 --- a/metricity/exts/event_listeners/_utils.py +++ b/metricity/exts/event_listeners/_utils.py @@ -14,6 +14,7 @@ def insert_thread(thread: discord.Thread, sess: AsyncSession) -> None:          auto_archive_duration=thread.auto_archive_duration,          locked=thread.locked,          type=thread.type.name, +        created_at=thread.created_at,      )) | 
