Merge pull request #4935 from vector-im/feature/bma/fix_legals

Fix #4919
This commit is contained in:
Benoit Marty 2022-01-13 11:59:46 +01:00 committed by GitHub
commit a16a6a6eeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/4935.bugfix Normal file
View File

@ -0,0 +1 @@
Fix a wrong network error issue in the Legals screen

View File

@ -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)
}