mirror of https://github.com/usbharu/Hideout.git
fix: ページングのレスポンスが間違っていたのを修正
This commit is contained in:
parent
637b2b84d5
commit
44bca9d373
|
@ -48,8 +48,8 @@ class MastodonNotificationApiController(
|
||||||
)
|
)
|
||||||
|
|
||||||
val httpHeader = notifications.toHttpHeader(
|
val httpHeader = notifications.toHttpHeader(
|
||||||
{ "${applicationConfig.url}/api/v1/notifications?max_id=$it" },
|
{ "${applicationConfig.url}/api/v1/notifications?min_id=$it" },
|
||||||
{ "${applicationConfig.url}/api/v1/notifications?min_id=$it" }
|
{ "${applicationConfig.url}/api/v1/notifications?max_id=$it" }
|
||||||
) ?: return@runBlocking ResponseEntity.ok(
|
) ?: return@runBlocking ResponseEntity.ok(
|
||||||
notifications.asFlow()
|
notifications.asFlow()
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue