From 2b8224ad9600ba9f9f0eb3ac035af8270987aa5b Mon Sep 17 00:00:00 2001 From: Cole Medin Date: Fri, 19 Sep 2025 15:05:40 -0500 Subject: [PATCH] Small typo fix for result.markdown --- python/src/server/services/crawling/strategies/single_page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/server/services/crawling/strategies/single_page.py b/python/src/server/services/crawling/strategies/single_page.py index f3e0b566..6a2cc1cc 100644 --- a/python/src/server/services/crawling/strategies/single_page.py +++ b/python/src/server/services/crawling/strategies/single_page.py @@ -255,7 +255,7 @@ class SinglePageCrawlStrategy: ) result = await self.crawler.arun(url=url, config=crawl_config) - if result.success and result.markdown and result.markdown: + if result.success and result.markdown: logger.info(f"Successfully crawled markdown file: {url}") # Report completion progress