We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
iCrawl
amishshah
vladfrangu
kyranet
Learn more about funding links in repositories.
Report abuse
1 parent ecc61f3 commit fdb09cbCopy full SHA for fdb09cb
src/structures/VoiceState.js
@@ -83,7 +83,9 @@ class VoiceState extends Base {
83
this.sessionId ??= null;
84
}
85
86
- if ('self_stream' in data) {
+ // The self_stream is property is omitted if false, check for another property
87
+ // here to avoid incorrectly clearing this when partial data is specified
88
+ if ('self_video' in data) {
89
/**
90
* Whether this member is streaming using "Screen Share"
91
* @type {boolean}
0 commit comments