This commit is contained in:
Benoit Marty 2022-01-12 18:06:32 +01:00
parent f8afe04a3b
commit 18359fedb3
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)
}