1
0
mirror of https://github.com/Rapptz/discord.py.git synced 2025-05-16 02:39:01 +00:00

Fix Thread.slowmode_delay not updating

This commit is contained in:
z03h 2021-07-20 23:47:15 -07:00 committed by GitHub
parent feed302269
commit 48eb981344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -188,6 +188,8 @@ class Thread(Messageable, Hashable):
except KeyError:
pass
self.slowmode_delay = data.get('rate_limit_per_user', 0)
try:
self._unroll_metadata(data['thread_metadata'])
except KeyError: