aboutsummaryrefslogtreecommitdiff
path: root/discord/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/http.py')
-rw-r--r--discord/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/http.py b/discord/http.py
index a0784e49..e4c0e55c 100644
--- a/discord/http.py
+++ b/discord/http.py
@@ -565,7 +565,7 @@ class HTTPClient:
def edit_guild(self, guild_id, *, reason=None, **fields):
valid_keys = ('name', 'region', 'icon', 'afk_timeout', 'owner_id',
'afk_channel_id', 'splash', 'verification_level',
- 'system_channel_id')
+ 'system_channel_id', 'default_message_notifications')
payload = {
k: v for k, v in fields.items() if k in valid_keys