diff --git a/disnake/channel.py b/disnake/channel.py index 94a4550174..9bb0cdf8df 100644 --- a/disnake/channel.py +++ b/disnake/channel.py @@ -4313,6 +4313,15 @@ def type(self) -> Literal[ChannelType.media]: """ return ChannelType.media + def hides_media_download_options(self) -> bool: + """Whether the channel hides the embedded media download options. + + This is a shortcut to :attr:`self.flags.hide_media_download_options `. + + :return type: :class:`bool` + """ + return self.flags.hide_media_download_options + # if only these parameters are passed, `_move` is called and no channel will be returned @overload async def edit(