From d3bd922bdb758ac8ea68c53bb49738de6a2ab755 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Tue, 31 Mar 2015 15:01:04 -0400 Subject: [PATCH] VuDL datastream fix. --- module/VuDL/src/VuDL/Connection/Fedora.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuDL/src/VuDL/Connection/Fedora.php b/module/VuDL/src/VuDL/Connection/Fedora.php index d3dbc6f2bdd..dad33f9b19a 100644 --- a/module/VuDL/src/VuDL/Connection/Fedora.php +++ b/module/VuDL/src/VuDL/Connection/Fedora.php @@ -114,7 +114,7 @@ class Fedora extends AbstractBase public function getDatastreamContent($id, $stream, $justStream = false) { if ($justStream) { - $url = $this->getBase() . $id . '/datastreams' . $stream; + $url = $this->getBase() . $id . $stream; } else { $url = $this->getBase() . $id . '/datastreams/' . $stream . '/content'; } -- GitLab