Skip to content

Commit bdbe2f7

Browse files
committed
fix: update browser arguments format for improved compatibility
1 parent 6e5312e commit bdbe2f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/archives/archives.service.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ export class ArchivesService {
104104
"--dump-content",
105105
"--browser-wait-until=networkidle0",
106106
"--browser-timeout=60000",
107-
"--browser-args=--no-sandbox,--disable-setuid-sandbox,--disable-dev-shm-usage",
107+
`--browser-args=${JSON.stringify([
108+
"--no-sandbox",
109+
"--disable-setuid-sandbox",
110+
"--disable-dev-shm-usage",
111+
])}`,
108112
],
109113
{
110114
timeout: 120000,

0 commit comments

Comments
 (0)