From b810fd0a1af678a1976a8c2263b9b553d1247d19 Mon Sep 17 00:00:00 2001 From: maskers <97827489+mskrss@users.noreply.github.com> Date: Mon, 17 Feb 2025 17:45:52 +0300 Subject: [PATCH] fix support channel detection --- src/handlers/event/support_onboard.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/event/support_onboard.rs b/src/handlers/event/support_onboard.rs index f2d2d5f..30d70af 100644 --- a/src/handlers/event/support_onboard.rs +++ b/src/handlers/event/support_onboard.rs @@ -21,7 +21,7 @@ pub async fn handle(ctx: &Context, thread: &GuildChannel) -> Result<()> { .name(ctx) .await .unwrap_or_default() - != "support" + != "community-support" { debug!("Not posting onboarding message to threads outside of support"); return Ok(());