diff --git a/src/handlers/event/support_onboard.rs b/src/handlers/event/support_onboard.rs index 6bc9197..cb3b40f 100644 --- a/src/handlers/event/support_onboard.rs +++ b/src/handlers/event/support_onboard.rs @@ -23,12 +23,12 @@ pub async fn handle(ctx: &Context, thread: &GuildChannel) -> Result<()> { .unwrap_or_default() != "launcher-support" && thread - .parent_id - .ok_or_else(|| eyre!("Couldn't get parent ID from thread {}!", thread.name))? - .name(ctx) - .await - .unwrap_or_default() - != "mod-support" + .parent_id + .ok_or_else(|| eyre!("Couldn't get parent ID from thread {}!", thread.name))? + .name(ctx) + .await + .unwrap_or_default() + != "mod-support" { debug!("Not posting onboarding message to threads outside of support"); return Ok(());