Allow editing of channel types for news and text channels

This commit is contained in:
NCPlayz
2020-05-18 00:39:22 +01:00
committed by Rapptz
parent 12e31bb933
commit bd1420b5f0
3 changed files with 19 additions and 1 deletions

View File

@ -529,7 +529,8 @@ class HTTPClient:
def edit_channel(self, channel_id, *, reason=None, **options):
r = Route('PATCH', '/channels/{channel_id}', channel_id=channel_id)
valid_keys = ('name', 'parent_id', 'topic', 'bitrate', 'nsfw',
'user_limit', 'position', 'permission_overwrites', 'rate_limit_per_user')
'user_limit', 'position', 'permission_overwrites', 'rate_limit_per_user',
'type')
payload = {
k: v for k, v in options.items() if k in valid_keys
}