Test fix for that voice state error

This commit is contained in:
Madeline 2022-07-09 16:34:41 +10:00
parent 9eb7c5de0f
commit 76d094a492

View File

@ -58,6 +58,9 @@ export async function onVoiceStateUpdate(this: WebSocket, data: Payload) {
}); });
} }
// 'Fix' for this one voice state error
if (!voiceState.guild_id) return;
//TODO the member should only have these properties: hoisted_role, deaf, joined_at, mute, roles, user //TODO the member should only have these properties: hoisted_role, deaf, joined_at, mute, roles, user
//TODO the member.user should only have these properties: avatar, discriminator, id, username //TODO the member.user should only have these properties: avatar, discriminator, id, username
//TODO this may fail //TODO this may fail
@ -65,7 +68,7 @@ export async function onVoiceStateUpdate(this: WebSocket, data: Payload) {
where: { id: voiceState.user_id, guild_id: voiceState.guild_id }, where: { id: voiceState.user_id, guild_id: voiceState.guild_id },
relations: ["user", "roles"], relations: ["user", "roles"],
}); });
//If the session changed we generate a new token //If the session changed we generate a new token
if (voiceState.session_id !== this.session_id) if (voiceState.session_id !== this.session_id)
voiceState.token = genVoiceToken(); voiceState.token = genVoiceToken();