Skip to content

Commit 9cd969b

Browse files
committed
fixup! when downloading from web, skip files that are not accessible
1 parent 4375528 commit 9cd969b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Streamer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function addDirRecursive(string $dir, string $internalDir = ''): void {
132132
fclose($fh);
133133
} elseif ($file instanceof Folder) {
134134
if($file->isReadable()) {
135-
$this->addDirRecursive($file->getName(), $internalDir);
135+
$this->addDirRecursive($dir . '/' . $file->getName(), $internalDir);
136136
}
137137
}
138138
}

0 commit comments

Comments
 (0)