diff --git a/discord/http.py b/discord/http.py index 237a0fc1d..fe3de245d 100644 --- a/discord/http.py +++ b/discord/http.py @@ -53,6 +53,7 @@ import aiohttp from .errors import HTTPException, Forbidden, NotFound, LoginFailure, DiscordServerError, GatewayNotFound from .gateway import DiscordClientWebSocketResponse from .file import File +from .mentions import AllowedMentions from . import __version__, utils from .utils import MISSING @@ -63,7 +64,6 @@ if TYPE_CHECKING: from .ui.view import View from .embeds import Embed - from .mentions import AllowedMentions from .message import Attachment from .flags import MessageFlags from .enums import ( @@ -217,12 +217,9 @@ def handle_message_parameters( payload['allowed_mentions'] = previous_allowed_mentions.to_dict() if mention_author is not None: - try: - payload['allowed_mentions']['replied_user'] = mention_author - except KeyError: - payload['allowed_mentions'] = { - 'replied_user': mention_author, - } + if 'allowed_mentions' not in payload: + payload['allowed_mentions'] = AllowedMentions().to_dict() + payload['allowed_mentions']['replied_user'] = mention_author if attachments is MISSING: attachments = files diff --git a/discord/mentions.py b/discord/mentions.py index 6b7a66dec..d8201fb81 100644 --- a/discord/mentions.py +++ b/discord/mentions.py @@ -23,7 +23,7 @@ DEALINGS IN THE SOFTWARE. """ from __future__ import annotations -from typing import Union, List, TYPE_CHECKING, Any, Union +from typing import Union, List, TYPE_CHECKING, Any # fmt: off __all__ = (