There was an error while loading. Please reload this page.
1 parent 07557e0 commit 77cb754Copy full SHA for 77cb754
1 file changed
components/ILIAS/Repository/Service/IRSS/IRSSWrapper.php
@@ -435,6 +435,9 @@ public function deliverContainerEntry(
435
$this->irss->consume()->stream($this->getResourceIdForIdString($container_id))->getStream()
436
);
437
[$stream, $info] = $reader->getItem($path);
438
+ if (!isset($info['basename']) && !str_starts_with($path, "/")) {
439
+ [$stream, $info] = $reader->getItem("/" . $path); // try "/" variant
440
+ }
441
442
$this->file_delivery->delivery()->deliver(
443
$stream,
0 commit comments