Use string template syntax.

This commit is contained in:
Tobias Preuss 2020-06-21 20:05:08 +02:00
parent 3e79da6a79
commit 178bdff62a
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ data class HomeServerConnectionConfig(
*/
fun withHomeServerUri(hsUri: Uri): Builder {
if (hsUri.scheme != "http" && hsUri.scheme != "https") {
throw RuntimeException("Invalid home server URI: " + hsUri)
throw RuntimeException("Invalid home server URI: $hsUri")
}
// ensure trailing /
val hsString = hsUri.toString().ensureTrailingSlash()