Fix discover
This commit is contained in:
parent
12ec0cc2aa
commit
011846c3ad
|
@ -85,7 +85,7 @@ class SearchDiscoverFragment : BaseFragment() {
|
|||
lifecycleScope.launchWhenCreated {
|
||||
try {
|
||||
val discoverPosts = api.discover()
|
||||
adapter.addPosts(discoverPosts)
|
||||
adapter.addPosts(discoverPosts.posts)
|
||||
binding.discoverNoInfiniteLoad.visibility = View.VISIBLE
|
||||
showError(show = false)
|
||||
} catch (exception: IOException) {
|
||||
|
|
|
@ -292,7 +292,7 @@ interface PixelfedAPI {
|
|||
|
||||
// get discover
|
||||
@GET("/api/v1/discover/posts")
|
||||
suspend fun discover() : List<Status>
|
||||
suspend fun discover() : DiscoverPosts
|
||||
|
||||
@FormUrlEncoded
|
||||
@POST("/api/v1/reports")
|
||||
|
|
Loading…
Reference in New Issue