mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 07:05:49 +03:00
Merge pull request #10489 from nextcloud/fix/crash-status-dialog-darkmode
SetStatusDialogFragment: fix nullability of itemSelected parameter
This commit is contained in:
commit
4fc60c2ae1
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ class SetStatusDialogFragment :
|
|||
binding.clearStatusAfterSpinner.apply {
|
||||
this.adapter = adapter
|
||||
onItemSelectedListener = object : OnItemSelectedListener {
|
||||
override fun onItemSelected(parent: AdapterView<*>, view: View, position: Int, id: Long) {
|
||||
override fun onItemSelected(parent: AdapterView<*>, view: View?, position: Int, id: Long) {
|
||||
setClearStatusAfterValue(position)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue