Skip to content

Commit e5e5559

Browse files
committed
fixup! fix: log fopen calls when stream isn't available
1 parent 3cde02a commit e5e5559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Streamer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public function addDirRecursive(string $dir, string $internalDir = ''): void {
129129
if ($file instanceof File) {
130130
try {
131131
$fh = $file->fopen('r');
132-
if($fh === false) {
132+
if ($fh === false) {
133133
$logger->error('Unable to open file for stream: ' . print_r($file, true));
134134
continue;
135135
}

0 commit comments

Comments
 (0)