Merge pull request #4935 from vector-im/feature/bma/fix_legals
Fix #4919
This commit is contained in:
commit
a16a6a6eeb
|
@ -0,0 +1 @@
|
|||
Fix a wrong network error issue in the Legals screen
|
|
@ -64,7 +64,7 @@ internal class DefaultTermsService @Inject constructor(
|
|||
*/
|
||||
override suspend fun getHomeserverTerms(baseUrl: String): TermsResponse {
|
||||
return try {
|
||||
val request = baseUrl + NetworkConstants.URI_API_PREFIX_PATH_R0 + "register"
|
||||
val request = baseUrl.ensureTrailingSlash() + NetworkConstants.URI_API_PREFIX_PATH_R0 + "register"
|
||||
executeRequest(null) {
|
||||
termsAPI.register(request)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue