More debug messages

This commit is contained in:
Bradley Bickford 2023-11-19 18:57:34 -05:00
parent 113f6cbbd5
commit e64811a179

View File

@ -145,10 +145,13 @@ async function getVoiceActiveUsers(server_snowflake, channel_snowflake) {
async function inCall(server_snowflake, channel_snowflake) {
return connection_pool.query("SELECT call_id FROM call_states WHERE server_snowflake = ? AND channel_snowflake = ? AND call_end_time IS NULL", [server_snowflake, channel_snowflake]).then(async (rows, fields) => {
console.log(`Num rows: ${rows.length}`)
console.log(rows)
if (rows.length == 0) {
return -1;
} else {
console.log("Made it here")
console.log(rows)
return rows[0].call_id
}
}).catch((error) => {