@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.
- package/package.json +1 -1
- package/src/docx.ts +2 -2
package/package.json
CHANGED
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
|
-
|
|
559
|
+
} catch (e) {
|
|
560
|
+
console.warn("[docx] setDocCover failed:", e);
|
|
561
561
|
}
|
|
562
562
|
}
|
|
563
563
|
|