fix: update remaining replyToMode "first" defaults to "off"

- src/channels/dock.ts: core channel dock fallback
- src/auto-reply/reply/reply-routing.test.ts: test expectation
- docs/zh-CN/channels/telegram.md: Chinese docs reference

Comprehensive grep confirms no remaining Telegram-specific "first"
defaults after this commit.
This commit is contained in:
Pejman Pour-Moezzi
2026-02-13 22:21:08 -08:00
committed by Vignesh
parent c17a109daa
commit 9475791d98
3 changed files with 4 additions and 4 deletions

View File

@@ -158,8 +158,8 @@ describe("createReplyDispatcher", () => {
});
describe("resolveReplyToMode", () => {
it("defaults to first for Telegram", () => {
expect(resolveReplyToMode(emptyCfg, "telegram")).toBe("first");
it("defaults to off for Telegram", () => {
expect(resolveReplyToMode(emptyCfg, "telegram")).toBe("off");
});
it("defaults to off for Discord and Slack", () => {