Skip to content

Commit

Permalink
Use message in body
Browse files Browse the repository at this point in the history
  • Loading branch information
holzmaster authored and mopsalarm committed Feb 25, 2024
1 parent 00fbe75 commit dda3b92
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ private class DigestHeaderDelegate :
holder.views.title.isVisible = value.pushNotification.title.isNotBlank()
holder.views.title.text = value.pushNotification.title

holder.views.body.isVisible = value.pushNotification.body.isNotBlank()
holder.views.body.text = value.pushNotification.body
holder.views.body.isVisible = value.message.isNotBlank()
holder.views.body.text = value.message

holder.views.extraText.isVisible = !value.notice.isNullOrBlank()
holder.views.extraText.text = value.notice ?: ""
Expand Down

0 comments on commit dda3b92

Please sign in to comment.