From cfe6ddf218c403a7212292079b1f90c78cc7c2cb Mon Sep 17 00:00:00 2001 From: Jacob Date: Sun, 24 May 2026 20:03:21 -0400 Subject: [PATCH] fix: look on the right side for text channels when posting the join notice in heat seeking --- src/heat_seek.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heat_seek.rs b/src/heat_seek.rs index 768b999..6716a56 100644 --- a/src/heat_seek.rs +++ b/src/heat_seek.rs @@ -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);