fix: look on the right side for text channels when posting the join notice in heat seeking

This commit is contained in:
2026-05-24 20:03:21 -04:00
parent 6529fa02b5
commit cfe6ddf218

View File

@@ -337,7 +337,7 @@ async fn follow_hottest_vc(
.discord_voice_channel_corresponding_text_channel
.get(&guild_id)
.and_then(|guild_mappings| {
guild_mappings.get_left_for(&hottest_vc).copied()
guild_mappings.get_right_for(&hottest_vc).copied()
})
.unwrap_or(hottest_vc);