Voice State Update Event Should Clarify Which Channel Was Left #3992
Answered
by
ghost
Skillz4Killz
asked this question in
API Feature Requests & Ideas
-
Am hoping to eliminate having to store voice states for every single user on every single channel in every single server just for determining which channel the user left. Use Case: server logs feature Potential Solution: Add a // User joined a channel
{
channel_id: "123",
previous_channel_id: null,
}
// User left a channel
{
channel_id: null,
previous_channel_id: "123",
}
// User switched channels
{
channel_id: "123",
previous_channel_id: "456",
} |
Beta Was this translation helpful? Give feedback.
Answered by
ghost
Oct 24, 2021
Replies: 1 comment
-
I would assume this falls under #3272? |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Skillz4Killz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would assume this falls under #3272?