From ec24fcc6828d3d2b19d5d1c683b2f1cff1cc7d4f Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Fri, 17 Jul 2026 00:41:20 -0700 Subject: [PATCH] docs(discord): clarify default recovery scope --- plugins/platforms/discord/adapter.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/platforms/discord/adapter.py b/plugins/platforms/discord/adapter.py index 32fdf84908f8..fe8784106db5 100644 --- a/plugins/platforms/discord/adapter.py +++ b/plugins/platforms/discord/adapter.py @@ -1905,10 +1905,10 @@ class DiscordAdapter(BasePlatformAdapter): def _missed_message_backfill_channels(self) -> set[str]: """Channels to scan for missed messages after Discord reconnects. - Defaults to free-response channels because those are the places where - mention-free posts are expected to start work. Operators can set - DISCORD_MISSED_MESSAGE_BACKFILL_CHANNELS="*" to scan every reachable - text channel, but the safe default is scoped. + Defaults to the union of allowed and free-response channels so both + mention-gated requests and mention-free work can be recovered. + Operators can set ``DISCORD_MISSED_MESSAGE_BACKFILL_CHANNELS="*"`` + to scan every reachable text channel, but the safe default is scoped. """ raw = os.getenv("DISCORD_MISSED_MESSAGE_BACKFILL_CHANNELS", "") if not raw.strip():