@max1874/feishu 0.2.19 → 0.2.20

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/docx.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@max1874/feishu",
3
- "version": "0.2.19",
3
+ "version": "0.2.20",
4
4
  "type": "module",
5
5
  "description": "OpenClaw Feishu/Lark channel plugin",
6
6
  "license": "MIT",
package/src/docx.ts CHANGED
@@ -556,8 +556,8 @@ async function createDoc(
556
556
  if (docId) {
557
557
  try {
558
558
  await setDocCover(client, docId, DEFAULT_COVER_TOKEN);
559
- } catch {
560
- // Non-fatal: doc is created, cover set failed
559
+ } catch (e) {
560
+ console.warn("[docx] setDocCover failed:", e);
561
561
  }
562
562
  }
563
563