mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-25 15:16:01 +00:00
Fixes #1527
This commit is contained in:
parent
c331071d1e
commit
bd6166b580
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ class StableRecyclerAdapter : RecyclerView.Adapter<RecyclerView.ViewHolder>() {
|
|||
val imageName = if (itemType == "pets") {
|
||||
"Pet_Egg_" + item.animal
|
||||
} else {
|
||||
"Mount_Icon_" + item.key
|
||||
"Mount_Icon_" + item.animal + "-Base"
|
||||
}
|
||||
|
||||
this.ownedTextView.text = context.getString(R.string.pet_ownership_fraction, item.numberOwned, item.totalNumber)
|
||||
|
|
|
|||
Loading…
Reference in a new issue