@hywkp/test-openclaw-sider 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/channel.ts +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hywkp/test-openclaw-sider",
3
3
  "private": false,
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "description": "Official Chrome channel plugin for connecting OpenClaw in Sider Chrome extension",
6
6
  "type": "module",
7
7
  "files": [
package/src/channel.ts CHANGED
@@ -2830,7 +2830,6 @@ async function handleInboundRealtimeMessage(params: {
2830
2830
  RawBody: bodyForAgent,
2831
2831
  CommandBody: rawText,
2832
2832
  BodyForCommands: rawText,
2833
- meta: event.meta,
2834
2833
  From: `${SIDER_CHANNEL_ID}:client:${sessionId}`,
2835
2834
  To: to,
2836
2835
  SessionKey: route.sessionKey,
@@ -2847,6 +2846,7 @@ async function handleInboundRealtimeMessage(params: {
2847
2846
  OriginatingChannel: SIDER_CHANNEL_ID,
2848
2847
  OriginatingTo: to,
2849
2848
  ...mediaPayload,
2849
+ ...(event.meta || {}),
2850
2850
  MediaUrl:
2851
2851
  mediaPayload.MediaUrl ||
2852
2852
  (unresolvedMediaUrls.length > 0 ? unresolvedMediaUrls[0] : undefined),