mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-24 18:36:21 +03:00
Remove some workarounds. I cannot reproduce the bug of signout which does not destroy the HomeActivityViewModel...
This commit is contained in:
parent
54f6440bcf
commit
e21c8792e6
3 changed files with 3 additions and 4 deletions
|
@ -16,6 +16,8 @@ Bugfix 🐛:
|
||||||
- Hiding membership events works the exact opposite (#2603)
|
- Hiding membership events works the exact opposite (#2603)
|
||||||
- Tapping drawer having more than 1 room in notifications gives "malformed link" error (#2605)
|
- Tapping drawer having more than 1 room in notifications gives "malformed link" error (#2605)
|
||||||
- Initial sync is not retried correctly when there is some network error. (#2632)
|
- Initial sync is not retried correctly when there is some network error. (#2632)
|
||||||
|
- Fix switch theme issue, and white field issue (#2599, #2528)
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
-
|
-
|
||||||
|
|
||||||
|
|
|
@ -82,8 +82,7 @@
|
||||||
</activity-alias>
|
</activity-alias>
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".features.home.HomeActivity"
|
android:name=".features.home.HomeActivity" />
|
||||||
android:launchMode="singleTask" />
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".features.login.LoginActivity"
|
android:name=".features.login.LoginActivity"
|
||||||
android:launchMode="singleTask"
|
android:launchMode="singleTask"
|
||||||
|
|
|
@ -79,8 +79,6 @@ class MainActivity : VectorBaseActivity<FragmentLoadingBinding>(), UnlockedActiv
|
||||||
|
|
||||||
intent.putExtra(EXTRA_ARGS, args)
|
intent.putExtra(EXTRA_ARGS, args)
|
||||||
activity.startActivity(intent)
|
activity.startActivity(intent)
|
||||||
// Ensure all the Activities are destroyed, it seems that the intent flags are not enough now.
|
|
||||||
activity.finishAffinity()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue