File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
interactions/models/discord Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2641,7 +2641,7 @@ async def delete_tag(self, tag_id: "Snowflake_Type") -> None:
2641
2641
2642
2642
2643
2643
@attrs .define (eq = False , order = False , hash = False , kw_only = True )
2644
- class GuildMediaChannel (GuildForum ):
2644
+ class GuildMedia (GuildForum ):
2645
2645
...
2646
2646
2647
2647
@@ -2699,7 +2699,7 @@ def process_permission_overwrites(
2699
2699
GuildVoice ,
2700
2700
GuildStageVoice ,
2701
2701
GuildForum ,
2702
- GuildMediaChannel ,
2702
+ GuildMedia ,
2703
2703
GuildPublicThread ,
2704
2704
GuildForumPost ,
2705
2705
GuildPrivateThread ,
@@ -2737,5 +2737,5 @@ def process_permission_overwrites(
2737
2737
ChannelType .DM : DM ,
2738
2738
ChannelType .GROUP_DM : DMGroup ,
2739
2739
ChannelType .GUILD_FORUM : GuildForum ,
2740
- ChannelType .MEDIA_CHANNEL : GuildMediaChannel ,
2740
+ ChannelType .MEDIA_CHANNEL : GuildMedia ,
2741
2741
}
Original file line number Diff line number Diff line change @@ -611,7 +611,7 @@ class ChannelType(CursedIntEnum):
611
611
"""Voice channel for hosting events with an audience"""
612
612
GUILD_FORUM = 15
613
613
"""A Forum channel"""
614
- MEDIA_CHANNEL = 16
614
+ GUILD_MEDIA = 16
615
615
"""Channel that can only contain threads, similar to `GUILD_FORUM` channels"""
616
616
617
617
@property
You can’t perform that action at this time.
0 commit comments