Remove } from error message
This commit is contained in:
parent
c5b5ccbded
commit
d6b4e129f8
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class NotLoggedInErrorInterceptor(private val loginType: LoginType) : Intercepto
|
|||
|
||||
if (chain.request().url().toString().contains("/Start.mvc/Get")) {
|
||||
doc.select(".errorBlock").let {
|
||||
if (it.isNotEmpty()) throw NotLoggedInException("${it.select(".errorTitle").text()}}")
|
||||
if (it.isNotEmpty()) throw NotLoggedInException(it.select(".errorTitle").text())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue