mirror of
https://github.com/usbharu/Hideout.git
synced 2026-08-17 19:15:58 +00:00
fix: ページネーションのHTTPヘッダー変換のURL組み立て部分のバグを修正
This commit is contained in:
+2
-2
@@ -8,10 +8,10 @@ fun <T, ID> PaginationList<T, ID>.toHttpHeader(
|
||||
): String? {
|
||||
val mutableListOf = mutableListOf<String>()
|
||||
if (next != null) {
|
||||
mutableListOf.add("<${nextBlock(nextBlock.toString())}>; rel=\"next\";")
|
||||
mutableListOf.add("<${nextBlock(this.next.toString())}>; rel=\"next\"")
|
||||
}
|
||||
if (prev != null) {
|
||||
mutableListOf.add("<${prevBlock(prevBlock.toString())}>; rel=\"prev\";")
|
||||
mutableListOf.add("<${prevBlock(this.prev.toString())}>; rel=\"prev\"")
|
||||
}
|
||||
|
||||
if (mutableListOf.isEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user