server icon indicating copy to clipboard operation
server copied to clipboard

Position Property is not included in GUILD_CREATE event response

Open IronworksProductions opened this issue 1 year ago • 0 comments

Describe the bug The channel position property does not seem to be included in a GUILD_CREATE EVENT response

According to testing by both me and Puyodead in the discord, the channel position property is not included in the GUILD_CREATE event's response, which is fired by bots when joining servers: image

Expected behavior channel position property being reported

Additional context This appears to also be missing from the channel endpoint itself when you get channel by id as shown when testing in insomnia:

{
	"id": "1256472120288899137",
	"created_at": "2024-06-29T04:51:37.600+00:00",
	"name": "test-me",
	"icon": null,
	"type": 0,
	"last_message_id": null,
	"guild_id": "1256408188144648280",
	"parent_id": null,
	"last_pin_timestamp": null,
	"default_auto_archive_duration": null,
	"permission_overwrites": [],
	"video_quality_mode": null,
	"nsfw": false,
	"topic": null,
	"retention_policy_id": null,
	"flags": 0,
	"default_thread_rate_limit_per_user": 0
}

IronworksProductions avatar Jun 29 '24 05:06 IronworksProductions