diff options
| author | Rapptz <[email protected]> | 2019-06-06 22:30:02 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-06-06 22:30:02 -0400 |
| commit | 320dbc06182ce404af3fcc9749dc26428e6459eb (patch) | |
| tree | 651d46786d5d022078f28e0587dcc0c80a98b755 /discord/http.py | |
| parent | Fix stray colon in Asset related docstrings (diff) | |
| download | discord.py-320dbc06182ce404af3fcc9749dc26428e6459eb.tar.xz discord.py-320dbc06182ce404af3fcc9749dc26428e6459eb.zip | |
Add support for system channel flags
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/discord/http.py b/discord/http.py index bfbb4201..d3ef0b87 100644 --- a/discord/http.py +++ b/discord/http.py @@ -592,7 +592,8 @@ class HTTPClient: valid_keys = ('name', 'region', 'icon', 'afk_timeout', 'owner_id', 'afk_channel_id', 'splash', 'verification_level', 'system_channel_id', 'default_message_notifications', - 'description', 'explicit_content_filter', 'banner') + 'description', 'explicit_content_filter', 'banner', + 'system_channel_flags') payload = { k: v for k, v in fields.items() if k in valid_keys |