Skip to content

Commit 5b20e06

Browse files
committed
actually this isn't a boolean
1 parent f4a036a commit 5b20e06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/PDF.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ private function make(array $options) : string
335335
foreach ($options as $option => $value) {
336336
if ($option == 'sandbox') {
337337
// only mess with sandbox if it is explicitly disabled
338-
if ($value === false) {
338+
if ($value == 'false') {
339339
$command[] = '--no-sandbox';
340340
}
341341

0 commit comments

Comments
 (0)