Skip to content

Commit

Permalink
fix: video quality mode data property (#7946)
Browse files Browse the repository at this point in the history
  • Loading branch information
ducktrshessami committed Jun 5, 2022
1 parent a51420f commit 76df9fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/structures/VoiceChannel.js
Expand Up @@ -20,7 +20,7 @@ class VoiceChannel extends BaseGuildVoiceChannel {
* The camera video quality mode of the channel.
* @type {?VideoQualityMode}
*/
this.videoQualityMode = VideoQualityModes[data.videoQualityMode];
this.videoQualityMode = VideoQualityModes[data.video_quality_mode];
} else {
this.videoQualityMode ??= null;
}
Expand Down

0 comments on commit 76df9fd

Please sign in to comment.