blun-king-cli 9.1.580 → 9.1.581
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 9.1.581
|
|
2
|
+
|
|
3
|
+
- Local HTML fetching now rejects extraction results that are empty after cleanup, instead of presenting a document title alone as page content.
|
|
4
|
+
- Short genuine content, visible headings, and plain-text or Markdown responses remain available. The existing extraction error path is preserved.
|
|
5
|
+
- Includes the 9.1.580 research fixes and earlier Telegram repairs unchanged. Model latency and incoming message addressing are unchanged.
|
|
6
|
+
|
|
1
7
|
## 9.1.580 - 2026-09-08
|
|
2
8
|
|
|
3
9
|
- Research collections reject impossible calendar dates and unparseable date-time
|
|
@@ -107,6 +107,7 @@ function renderRoot(root, title, safeBaseUrl) {
|
|
|
107
107
|
let markdown = createMarkdownService().turndown(root.innerHTML).trim();
|
|
108
108
|
if (markdown.length === 0) markdown = fallback;
|
|
109
109
|
markdown = markdown.replace(/\n{4,}/gu, '\n\n\n').trim();
|
|
110
|
+
if (markdown.length === 0) return '';
|
|
110
111
|
return withTitle(title, markdown);
|
|
111
112
|
}
|
|
112
113
|
|