TL;DR: The bot is configured to condense certain instances and communities. At the moment, only beehaw.org is marked to be condensed.
Quickly looking at the source code, it seems ReplyToPostsCommand uses a SummaryTextWrapper, which contains an iterable for both CondensedSummaryTextWrapperProvider and DefaultSummaryTextWrapperProvider. The DefaultSummaryTextWrapperProvider has a priority of -1_000 (so it’s always checked last) and is set to always return true on the supports(Community $community): bool. CondensedSummaryTextWrapperProvider references the config/services.yaml for it’s supports(Community $community): bool call which lists 0 condensed communities and 1 condensed instance, being beehaw.org.
TL;DR: The bot is configured to condense certain instances and communities. At the moment, only beehaw.org is marked to be condensed.
Quickly looking at the source code, it seems
ReplyToPostsCommand
uses aSummaryTextWrapper
, which contains an iterable for bothCondensedSummaryTextWrapperProvider
andDefaultSummaryTextWrapperProvider
. TheDefaultSummaryTextWrapperProvider
has a priority of-1_000
(so it’s always checked last) and is set to always returntrue
on thesupports(Community $community): bool
.CondensedSummaryTextWrapperProvider
references the config/services.yaml for it’ssupports(Community $community): bool
call which lists 0 condensed communities and 1 condensed instance, being beehaw.org.