fix duration_second missing support for docx

Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-07-18 11:56:36 +08:00
parent b241220c15
commit d6f2834209
+1
View File
@@ -28,6 +28,7 @@ function estimateBlockDuration(block) {
switch (block.type) { switch (block.type) {
case "text": case "text":
case "markdown": case "markdown":
case "document":
return readingSecs(block.content?.body); return readingSecs(block.content?.body);
case "image": case "image":