mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-22 05:38:55 +00:00
fix displaying gem cap in subscription details
This commit is contained in:
parent
bc20ab80e0
commit
e0e96a5ae2
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ class SubscriptionDetailsView : LinearLayout {
|
|||
} else {
|
||||
monthsSubscribedTextView.text = resources.getString(R.string.months, plan.consecutive?.count ?: 0)
|
||||
}
|
||||
gemCapTextView.text = (plan.consecutive?.gemCapExtra ?: 0 + 25).toString()
|
||||
gemCapTextView.text = plan.totalNumberOfGems().toString()
|
||||
currentHourglassesTextView.text = plan.consecutive?.trinkets.toString()
|
||||
|
||||
if (plan.paymentMethod != null) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue