Skip to content

Commit

Permalink
Fix warning messages that cookie file does not exist when attempting …
Browse files Browse the repository at this point in the history
…to delete it.
  • Loading branch information
trampgeek committed Mar 22, 2024
1 parent eb9aca5 commit e1ba46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/jobesandbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public function execute($sourcecode, $language, $input, $files = null, $params =
}

// Delete the cookie file.
unlink($cookiefile);
@unlink($cookiefile);

$runresult = [];
$runresult['sandboxinfo'] = [
Expand Down

0 comments on commit e1ba46f

Please sign in to comment.