Skip to content

Commit

Permalink
bug fix no posts on private profile change get posts by account route
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiebeler committed Jan 27, 2025
1 parent b694f7d commit 0deff54
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ interface PixelfedApi {
@Body body: RequestBody
): Call<AccountDto>

@GET("api/pixelfed/v1/accounts/{accountid}/statuses?pe=1")
@GET("api/v1/accounts/{accountid}/statuses?pe=1")
fun getPostsByAccountId(
@Path("accountid") accountId: String, @Query("limit") limit: Int
): Call<List<PostDto>>

@GET("api/pixelfed/v1/accounts/{accountid}/statuses?pe=1")
@GET("api/v1/accounts/{accountid}/statuses?pe=1")
fun getPostsByAccountId(
@Path("accountid") accountId: String,
@Query("max_id") maxId: String,
Expand Down

0 comments on commit 0deff54

Please sign in to comment.