Change discover endpoint used

This commit is contained in:
Matthieu 2021-12-06 09:56:14 +00:00
parent 9797060a7b
commit 5b557ed061
1 changed files with 2 additions and 2 deletions

View File

@ -291,7 +291,7 @@ interface PixelfedAPI {
): Observable<Attachment>
// get discover
@GET("/api/v2/discover/posts")
@GET("/api/v1/discover/posts")
suspend fun discover() : DiscoverPosts
@FormUrlEncoded
@ -304,4 +304,4 @@ interface PixelfedAPI {
@Field("forward") forward: Boolean = true
) : Report
}
}