mirror of https://github.com/usbharu/Hideout.git
style: fix lint (CI)
This commit is contained in:
parent
4e15785888
commit
37d804c2f0
|
@ -8,6 +8,4 @@ class MastodonReadTimeline(
|
||||||
val localOnly: Boolean,
|
val localOnly: Boolean,
|
||||||
val remoteOnly: Boolean,
|
val remoteOnly: Boolean,
|
||||||
val page: Page
|
val page: Page
|
||||||
) {
|
)
|
||||||
|
|
||||||
}
|
|
||||||
|
|
|
@ -38,7 +38,8 @@ class MastodonReadTimelineApplicationService(
|
||||||
|
|
||||||
val readTimeline = timelineStore.readTimeline(timeline, readTimelineOption, command.page, principal)
|
val readTimeline = timelineStore.readTimeline(timeline, readTimelineOption, command.page, principal)
|
||||||
|
|
||||||
return PaginationList(readTimeline.map {
|
return PaginationList(
|
||||||
|
readTimeline.map {
|
||||||
Status(
|
Status(
|
||||||
it.postId.id.toString(),
|
it.postId.id.toString(),
|
||||||
it.post.url.toString(),
|
it.post.url.toString(),
|
||||||
|
@ -103,7 +104,10 @@ class MastodonReadTimelineApplicationService(
|
||||||
pinned = false,
|
pinned = false,
|
||||||
filtered = emptyList(),
|
filtered = emptyList(),
|
||||||
)
|
)
|
||||||
}, readTimeline.next?.id, readTimeline.prev?.id)
|
},
|
||||||
|
readTimeline.next?.id,
|
||||||
|
readTimeline.prev?.id
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
|
@ -67,7 +67,8 @@ class SpringTimelineApi(
|
||||||
minId?.toLongOrNull(),
|
minId?.toLongOrNull(),
|
||||||
limit
|
limit
|
||||||
)
|
)
|
||||||
), principal
|
),
|
||||||
|
principal
|
||||||
).asFlow()
|
).asFlow()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue