Skip to content

Commit 2cd4ea8

Browse files
committed
fix: Finally fix Guild.edit so we can edit guild features
1 parent ee95b14 commit 2cd4ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/guild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,7 @@ async def edit(
17491749

17501750
if features is not MISSING:
17511751
current_features = GuildFeatures(self.features)
1752-
fields['features'] = current_features.merge(features)
1752+
fields['features'] = current_features.merge(features).parsed()
17531753

17541754
if discovery_splash is not MISSING:
17551755
fields['discovery_splash'] = utils._bytes_to_base64_data(discovery_splash)

0 commit comments

Comments
 (0)