fix: only fetch images for scrape flows

Default title and path recognition to skip image fetching, while keeping scrape entrypoints and transfer-to-scrape paths populated with image data. This preserves lightweight recognition behavior without breaking metadata scraping.
This commit is contained in:
jxxghp
2026-05-10 08:14:08 +08:00
parent 1d97f2e043
commit c52327c248
5 changed files with 12 additions and 9 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ class ScrapeFileAction(BaseAction):
mediachain = MediaChain()
mediainfo = mediachain.recognize_by_meta(
meta,
obtain_images=False,
obtain_images=True,
)
if not mediainfo:
_failed_count += 1