fix(mattermost): preserve threaded default and docs

This commit is contained in:
Chummy 2026-02-18 17:41:43 +08:00
parent 58120b1c69
commit 1bfd50bce9
5 changed files with 26 additions and 23 deletions

View file

@ -300,7 +300,7 @@ async fn deliver_if_configured(config: &Config, job: &CronJob, output: &str) ->
mm.bot_token.clone(),
mm.channel_id.clone(),
mm.allowed_users.clone(),
mm.thread_replies.unwrap_or(false),
mm.thread_replies.unwrap_or(true),
);
channel.send(&SendMessage::new(output, target)).await?;
}