[agent] fix: repair telegram cache message types (#82909) · openclaw/openclaw@e3a496a
openclaw
·
2026-06-23
·
via Recent Commits to openclaw:main
Skip to content
Navigation Menu
Saved searches
Use saved searches to filter your results more quickly
Sign up
Commit e3a496a
[agent] fix: repair telegram cache message types (#82909)
1 file changed
Lines changed: 2 additions & 1 deletion
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change |
|---|
@@ -22,7 +22,8 @@ import { getOptionalTelegramRuntime } from "./runtime.js";
|
22 | 22 | |
23 | 23 | export type TelegramReplyChainEntry = NonNullable<MsgContext["ReplyChain"]>[number]; |
24 | 24 | |
25 | | -export type TelegramCachedMessageNode = TelegramReplyChainEntry & { |
| 25 | +export type TelegramCachedMessageNode = Omit<TelegramReplyChainEntry, "messageId"> & { |
| 26 | +messageId: string; |
26 | 27 | sourceMessage: Message; |
27 | 28 | }; |
28 | 29 | |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
0 commit comments