chore(zendriver): pin 0.15.3 and bump plugin version

- pin automatic zendriver installation to 0.15.3
- align manual install guidance with the pinned version
- bump anime_downloader plugin version to 0.7.18

Co-Authored-By: First Fluke <our.first.fluke@gmail.com>
This commit is contained in:
2026-03-23 21:20:51 +09:00
parent 583ba8dbcf
commit 643fbd47b9
4 changed files with 8 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ async def fetch_html(url: str, timeout: int = 60, browser_path: str = None) -> d
try:
import zendriver as zd
except ImportError as e:
return {"success": False, "error": f"Zendriver not installed: {e}. Run: pip install zendriver", "html": ""}
return {"success": False, "error": f"Zendriver not installed: {e}. Run: pip install zendriver==0.15.3", "html": ""}
result = {"success": False, "html": "", "elapsed": 0}
start_time = asyncio.get_event_loop().time()