This commit is contained in:
Benoit Marty 2019-12-12 17:41:16 +01:00
parent efc1f38f8c
commit d69881f321
5 changed files with 1 additions and 5 deletions

View File

@ -95,7 +95,6 @@ internal class RealmSessionParamsStore @Inject constructor(private val mapper: S
}
}
override suspend fun updateCredentials(newCredentials: Credentials) {
awaitTransaction(realmConfiguration) { realm ->
val currentSessionParams = realm

View File

@ -36,7 +36,6 @@ fun StringBuilder.appendParamToUrl(param: String, value: String): StringBuilder
return this
}
/**
* Ex: "https://matrix.org/" -> "matrix.org"
*/

View File

@ -197,7 +197,7 @@ abstract class VectorBaseActivity : AppCompatActivity(), HasScreenInjector {
protected open fun handleInvalidToken(globalError: GlobalError.InvalidToken) {
Timber.w("Invalid token event received")
if(mainActivityStarted) {
if (mainActivityStarted) {
return
}

View File

@ -83,4 +83,3 @@ class SoftLogoutActivity : VectorBaseActivity() {
Timber.w("Ignoring invalid token global error")
}
}

View File

@ -32,5 +32,4 @@ data class SoftLogoutViewState(
fun isLoading(): Boolean {
return asyncLoginAction is Loading
}
}