mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-02 12:16:55 +01:00
Merge pull request #4935 from vector-im/feature/bma/fix_legals
Fix #4919
This commit is contained in:
commit
a16a6a6eeb
1
changelog.d/4935.bugfix
Normal file
1
changelog.d/4935.bugfix
Normal file
@ -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…
x
Reference in New Issue
Block a user