mirror of
https://github.com/element-hq/element-android
synced 2024-11-23 18:05:36 +03:00
Fixing security section recommendation visibility
This commit is contained in:
parent
cf25b81e9a
commit
81038bdd23
1 changed files with 5 additions and 3 deletions
|
@ -186,14 +186,16 @@ class VectorSettingsDevicesFragment :
|
|||
unverifiedSessionsCount: Int,
|
||||
isCurrentSessionVerified: Boolean,
|
||||
) {
|
||||
if (unverifiedSessionsCount == 0 && inactiveSessionsCount == 0) {
|
||||
val isUnverifiedSectionVisible = unverifiedSessionsCount > 0 && isCurrentSessionVerified
|
||||
val isInactiveSectionVisible = inactiveSessionsCount > 0
|
||||
if (isUnverifiedSectionVisible.not() && isInactiveSectionVisible.not()) {
|
||||
hideSecurityRecommendations()
|
||||
} else {
|
||||
views.deviceListHeaderSectionSecurityRecommendations.isVisible = true
|
||||
views.deviceListSecurityRecommendationsDivider.isVisible = true
|
||||
|
||||
views.deviceListUnverifiedSessionsRecommendation.isVisible = unverifiedSessionsCount > 0 && isCurrentSessionVerified
|
||||
views.deviceListInactiveSessionsRecommendation.isVisible = inactiveSessionsCount > 0
|
||||
views.deviceListUnverifiedSessionsRecommendation.isVisible = isUnverifiedSectionVisible
|
||||
views.deviceListInactiveSessionsRecommendation.isVisible = isInactiveSectionVisible
|
||||
val unverifiedSessionsViewState = SecurityRecommendationViewState(
|
||||
description = getString(R.string.device_manager_unverified_sessions_description),
|
||||
sessionsCount = unverifiedSessionsCount,
|
||||
|
|
Loading…
Reference in a new issue