diff --git a/core/network/src/main/kotlin/app/pachli/core/network/retrofit/MastodonApi.kt b/core/network/src/main/kotlin/app/pachli/core/network/retrofit/MastodonApi.kt index 675851c42..2b10ab41d 100644 --- a/core/network/src/main/kotlin/app/pachli/core/network/retrofit/MastodonApi.kt +++ b/core/network/src/main/kotlin/app/pachli/core/network/retrofit/MastodonApi.kt @@ -277,12 +277,12 @@ interface MastodonApi { @Path("id") statusId: String, ): ApiResult - @POST("api/v1/statuses/{id}/reblog2") + @POST("api/v1/statuses/{id}/reblog") suspend fun reblogStatus( @Path("id") statusId: String, ): ApiResult - @POST("api/v1/statuses/{id}/unreblog2") + @POST("api/v1/statuses/{id}/unreblog") suspend fun unreblogStatus( @Path("id") statusId: String, ): ApiResult