mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-14 10:11:58 +00:00
Fix using unowned mounts
This commit is contained in:
parent
c303056ce4
commit
2e7f26adbb
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ class MountDetailRecyclerAdapter(data: OrderedRealmCollection<Mount>?, autoUpdat
|
|||
}
|
||||
|
||||
override fun onClick(v: View) {
|
||||
if (ownedMount?.owned == false) {
|
||||
if (ownedMount?.owned != true) {
|
||||
return
|
||||
}
|
||||
val menu = BottomSheetMenu(itemView.context)
|
||||
|
|
|
|||
Loading…
Reference in a new issue