Uitilize kotlin elvis operator
This commit is contained in:
parent
451409fc3b
commit
edfdbe805f
1 changed files with 1 additions and 1 deletions
|
|
@ -327,7 +327,7 @@ class FeedGroupDialog : DialogFragment(), BackPressable {
|
|||
groupIcon = feedGroupEntity?.icon
|
||||
groupSortOrder = feedGroupEntity?.sortOrder ?: -1
|
||||
|
||||
val feedGroupIcon = if (selectedIcon == null) icon else selectedIcon!!
|
||||
val feedGroupIcon = selectedIcon ?: icon
|
||||
feedGroupCreateBinding.iconPreview.setImageResource(feedGroupIcon.getDrawableRes())
|
||||
|
||||
if (feedGroupCreateBinding.groupNameInput.text.isNullOrBlank()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue