We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20be297 commit a2eaffdCopy full SHA for a2eaffd
interactions/api/models/message.py
@@ -910,7 +910,7 @@ async def edit(
910
if not components:
911
_components = []
912
elif components is MISSING:
913
- _components = self.components
+ _components = _build_components(components=self.components)
914
else:
915
_components = _build_components(components=components)
916
interactions/client/context.py
@@ -255,7 +255,7 @@ async def edit(
255
256
if self.message.components is not None or components is not MISSING:
257
if components is MISSING:
258
- _components = self.message.components
+ _components = _build_components(components=self.message.components)
259
elif not components:
260
261
0 commit comments