fix(gateway): bridge slack.reply_in_thread config

This commit is contained in:
bde3249023
2026-04-15 16:19:48 -07:00
committed by Teknium
parent ae7687cdc5
commit b1be86ef96
2 changed files with 30 additions and 0 deletions

View File

@@ -570,6 +570,8 @@ def load_gateway_config() -> GatewayConfig:
)
if "reply_prefix" in platform_cfg:
bridged["reply_prefix"] = platform_cfg["reply_prefix"]
if "reply_in_thread" in platform_cfg:
bridged["reply_in_thread"] = platform_cfg["reply_in_thread"]
if "require_mention" in platform_cfg:
bridged["require_mention"] = platform_cfg["require_mention"]
if "free_response_channels" in platform_cfg: