mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-09 22:08:44 +00:00
Fix displaying bard robes in check in dialog. Fixes #1012
This commit is contained in:
parent
401df2273b
commit
569690599e
1 changed files with 4 additions and 1 deletions
|
|
@ -897,7 +897,10 @@ open class MainActivity : BaseActivity(), TutorialView.OnTutorialReaction {
|
|||
val view = factory.inflate(R.layout.dialog_login_incentive, null)
|
||||
|
||||
val imageView = view.findViewById<View>(R.id.imageView) as? SimpleDraweeView
|
||||
val imageKey = event.notification.data.rewardKey[0]
|
||||
var imageKey = event.notification.data.rewardKey[0]
|
||||
if (imageKey.contains("armor")) {
|
||||
imageKey = "slim_imageKey"
|
||||
}
|
||||
DataBindingUtils.loadImage(imageView, imageKey)
|
||||
|
||||
val youEarnedMessage = this.getString(R.string.checkInRewardEarned, event.notification.data.rewardText)
|
||||
|
|
|
|||
Loading…
Reference in a new issue