fix: Add no_sandbox=True to Zendriver start calls for Docker root support

This commit is contained in:
2026-01-03 21:14:14 +09:00
parent 4b59b997ea
commit d5b880d876
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
title: "애니 다운로더" title: "애니 다운로더"
version: "0.5.7" version: "0.5.8"
package_name: "anime_downloader" package_name: "anime_downloader"
developer: "projectdx" developer: "projectdx"
description: "anime downloader" description: "anime downloader"

View File

@@ -59,9 +59,9 @@ async def fetch_html(url: str, timeout: int = 60, browser_path: str = None) -> d
# 브라우저 시작 # 브라우저 시작
if exec_path: 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: else:
browser = await zd.start(headless=True) browser = await zd.start(headless=True, no_sandbox=True)
page = await browser.get(url) page = await browser.get(url)