discord/discord-api-spec

`/users/@me/channels` route can return non-private channels?

EmmmaTech opened this issue · 1 comments

Currently, the response for the route is this:

"oneOf": [
{
"$ref": "#/components/schemas/GuildChannelResponse"
},
{
"$ref": "#/components/schemas/PrivateChannelResponse"
},
{
"$ref": "#/components/schemas/PrivateGroupChannelResponse"
},
{
"$ref": "#/components/schemas/ThreadResponse"
}
]

GuildChannelResponse and ThreadResponse are listed here, when they shouldn't be. Interestingly enough, this is the only example I found of this.

fixed