Skip to content

Commit 4caab8c

Browse files
committed
make the storage url end in a slash in the profile
1 parent ae7719d commit 4caab8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

solid/lib/Controller/ProfileController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ private function getUserProfile($userId) {
306306
'preferences' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute("solid.storage.handleGet", array("userId" => $userId, "path" => "/settings/preferences.ttl"))),
307307
'privateTypeIndex' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute("solid.storage.handleGet", array("userId" => $userId, "path" => "/settings/privateTypeIndex.ttl"))),
308308
'publicTypeIndex' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute("solid.storage.handleGet", array("userId" => $userId, "path" => "/settings/publicTypeIndex.ttl"))),
309-
'storage' => $this->getStorageUrl($userId),
309+
'storage' => $this->getStorageUrl($userId) . "/",
310310
'issuer' => $this->urlGenerator->getBaseURL()
311311
);
312312
return $profile;

0 commit comments

Comments
 (0)