mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-05 01:35:38 +00:00
Remove off option from one-to-one conversation expiration settings
This commit is contained in:
parent
820354d451
commit
cc8fdb58dd
@ -66,8 +66,12 @@ class ExpirationSettingsViewModel(
|
|||||||
ExpirationType.DELETE_AFTER_READ -> afterReadOptions
|
ExpirationType.DELETE_AFTER_READ -> afterReadOptions
|
||||||
else -> emptyList()
|
else -> emptyList()
|
||||||
}
|
}
|
||||||
}.onEach {
|
}.onEach { options ->
|
||||||
_expirationTimerOptions.value = it
|
_expirationTimerOptions.value = if (recipient.value?.isLocalNumber == true || recipient.value?.isClosedGroupRecipient == true) {
|
||||||
|
options
|
||||||
|
} else {
|
||||||
|
options.slice(1 until options.size)
|
||||||
|
}
|
||||||
}.launchIn(viewModelScope)
|
}.launchIn(viewModelScope)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user