Merge pull request #806 from Bubu/fix_697
call /join/{roomIdOrAlias} instead of /rooms/{roomId}/join
This commit is contained in:
commit
6ca3ba6c9b
|
@ -21,6 +21,7 @@ Bugfix 🐛:
|
||||||
- Fix crash when opening room creation screen from the room filtering screen
|
- Fix crash when opening room creation screen from the room filtering screen
|
||||||
- Fix avatar image disappearing (#777)
|
- Fix avatar image disappearing (#777)
|
||||||
- Fix read marker banner when permalink
|
- Fix read marker banner when permalink
|
||||||
|
- Fix joining upgraded rooms (#697)
|
||||||
- Fix matrix.org room directory not being browsable (#807)
|
- Fix matrix.org room directory not being browsable (#807)
|
||||||
- Hide non working settings (#751)
|
- Hide non working settings (#751)
|
||||||
|
|
||||||
|
|
|
@ -212,11 +212,12 @@ internal interface RoomAPI {
|
||||||
/**
|
/**
|
||||||
* Join the given room.
|
* Join the given room.
|
||||||
*
|
*
|
||||||
* @param roomId the room id
|
* @param roomIdOrAlias the room id or alias
|
||||||
|
* @param server_name the servers to attempt to join the room through
|
||||||
* @param params the request body
|
* @param params the request body
|
||||||
*/
|
*/
|
||||||
@POST(NetworkConstants.URI_API_PREFIX_PATH_R0 + "rooms/{roomId}/join")
|
@POST(NetworkConstants.URI_API_PREFIX_PATH_R0 + "join/{roomIdOrAlias}")
|
||||||
fun join(@Path("roomId") roomId: String,
|
fun join(@Path("roomIdOrAlias") roomIdOrAlias: String,
|
||||||
@Query("server_name") viaServers: List<String>,
|
@Query("server_name") viaServers: List<String>,
|
||||||
@Body params: Map<String, String?>): Call<Unit>
|
@Body params: Map<String, String?>): Call<Unit>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue