Handle VOICE_CHANNEL_STATUS_UPDATE gateway event#728
Open
Sim-hu wants to merge 1 commit into
Open
Conversation
Add support for the VOICE_CHANNEL_STATUS_UPDATE dispatch event, which fires when a voice channel's status text is set or cleared. Previously this event was logged as unhandled. Ref: Kraigie#688
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Handle the
VOICE_CHANNEL_STATUS_UPDATEgateway dispatch event instead of logging it as unhandled.Motivation
This event is dispatched when a voice channel's status text is set, updated, or cleared. It was reported as unhandled in #688. Other libraries (pycord, serenity, Oceanic) already handle this event.
Changes
lib/nostrum/struct/event/voice_channel_status_update.ex— new event struct withid,guild_id, andstatusfieldslib/nostrum/shard/dispatch.ex— add dispatch clause before the catch-alllib/nostrum/consumer.ex— add type definition and union memberEvent Payload
idguild_idstatusTesting
mix compilepassesmix test— 212 tests, 0 failuresRef: #688