Skip to content

Commit

Permalink
Bugfix: Add missing path segment trailing slash when processing links
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard Schmitt committed Jan 14, 2019
1 parent af80a88 commit 9019fbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ public function processUriConstraints(
$pathSegmentPart = $options['offset'] > 0 ? $options['delimiter'] : '';
$pathSegmentPart .= ($preset['resolutionValue'] ?? $preset['uriSegment']);

return $uriConstraints->withPathPrefix($pathSegmentPart, true);
return $uriConstraints->withPathPrefix($pathSegmentPart . '/', true);
}
}

0 comments on commit 9019fbd

Please sign in to comment.