diff options
| author | z03h <[email protected]> | 2021-04-17 05:10:41 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-17 08:10:41 -0400 |
| commit | 304229071f4128c91ceeff7a6727fe2c83568b98 (patch) | |
| tree | 68b3a25e562c900988a58bee69491614b6e35f30 /discord/http.py | |
| parent | Refactor save() and read() into AssetMixin (diff) | |
| download | discord.py-304229071f4128c91ceeff7a6727fe2c83568b98.tar.xz discord.py-304229071f4128c91ceeff7a6727fe2c83568b98.zip | |
Add VoiceChannel.video_quality_mode
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/discord/http.py b/discord/http.py index 6aba2d21..608487e8 100644 --- a/discord/http.py +++ b/discord/http.py @@ -681,6 +681,7 @@ class HTTPClient: 'rate_limit_per_user', 'type', 'rtc_region', + 'video_quality_mode', ) payload = {k: v for k, v in options.items() if k in valid_keys} return self.request(r, reason=reason, json=payload) @@ -705,6 +706,7 @@ class HTTPClient: 'permission_overwrites', 'rate_limit_per_user', 'rtc_region', + 'video_quality_mode', ) payload.update({k: v for k, v in options.items() if k in valid_keys and v is not None}) |