mirror of
https://github.com/gotson/komga.git
synced 2025-12-17 14:02:55 +01:00
fix(opds2): fix some incorrect urls
This commit is contained in:
parent
d1cb58b21b
commit
15da16099b
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ class Opds2Controller(
|
|||
)
|
||||
|
||||
private fun uriBuilder(path: String) =
|
||||
ServletUriComponentsBuilder.fromCurrentContextPath().pathSegment("opds", "v2", path)
|
||||
ServletUriComponentsBuilder.fromCurrentContextPath().pathSegment("opds", "v2").path(path)
|
||||
|
||||
private fun linkPage(uriBuilder: UriComponentsBuilder, page: Page<*>): List<WPLinkDto> {
|
||||
return listOfNotNull(
|
||||
|
|
|
|||
Loading…
Reference in a new issue