Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fa39d7c3 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

refactor: small changes

parent a9396365
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -38,12 +38,12 @@ class ReLoginWithOidcActivity: AppCompatActivity() {
    override fun onStart() {
        super.onStart()
        if (removeAccount()) {
            supportFragmentManager.beginTransaction().apply {
                replace(R.id.content, EeloAuthenticatorFragment())
                commit()
            }
            supportFragmentManager.beginTransaction()
                .replace(android.R.id.content, EeloAuthenticatorFragment())
                .commit()
        } else {
            Logger.log.info("Vincent: Cannot remove account")
            finishAndRemoveTask()
        }
    }