From d5b880d876cf9a0b1cc66ec7d862cfdfd0787f24 Mon Sep 17 00:00:00 2001 From: projectdx Date: Sat, 3 Jan 2026 21:14:14 +0900 Subject: [PATCH] fix: Add no_sandbox=True to Zendriver start calls for Docker root support --- info.yaml | 2 +- lib/zendriver_ohli24.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/info.yaml b/info.yaml index a317118..1da2b98 100644 --- a/info.yaml +++ b/info.yaml @@ -1,5 +1,5 @@ title: "애니 다운로더" -version: "0.5.7" +version: "0.5.8" package_name: "anime_downloader" developer: "projectdx" description: "anime downloader" diff --git a/lib/zendriver_ohli24.py b/lib/zendriver_ohli24.py index c4edad6..b00f233 100644 --- a/lib/zendriver_ohli24.py +++ b/lib/zendriver_ohli24.py @@ -59,9 +59,9 @@ async def fetch_html(url: str, timeout: int = 60, browser_path: str = None) -> d # 브라우저 시작 if exec_path: - browser = await zd.start(headless=True, browser_executable_path=exec_path) + browser = await zd.start(headless=True, browser_executable_path=exec_path, no_sandbox=True) else: - browser = await zd.start(headless=True) + browser = await zd.start(headless=True, no_sandbox=True) page = await browser.get(url)