clawgram 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/channel.js +5 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/channel.js
CHANGED
|
@@ -121,6 +121,11 @@ const createChannelPlugin = (runtimes) => {
|
|
|
121
121
|
enabled: account?.enabled,
|
|
122
122
|
accountId,
|
|
123
123
|
proxy: (0, proxy_config_1.resolveProxyConfig)(account?.proxy),
|
|
124
|
+
// Field-by-field construction means every new account setting has to
|
|
125
|
+
// be listed here as well: 2.3.1 shipped replyParseMode read by the
|
|
126
|
+
// client from a config object this function had already stripped it
|
|
127
|
+
// from, so the setting validated, deployed and did nothing.
|
|
128
|
+
replyParseMode: account?.replyParseMode,
|
|
124
129
|
};
|
|
125
130
|
},
|
|
126
131
|
},
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "clawgram",
|
|
3
3
|
"name": "Clawgram",
|
|
4
4
|
"description": "Clawgram — personal Telegram (MTProto userbot) channel for OpenClaw. Your AI assistant reads and responds as you.",
|
|
5
|
-
"version": "2.3.
|
|
5
|
+
"version": "2.3.3",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|
package/package.json
CHANGED