Fix displaying bard robes in check in dialog. Fixes #1012

This commit is contained in:
Phillip Thelen 2018-08-22 19:37:15 +02:00
parent 401df2273b
commit 569690599e

View file

@ -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)