Added some lines to improve code-readability

This commit is contained in:
litetex 2021-11-02 23:36:46 +01:00
parent 94219b78e7
commit f0112a2de2
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,8 @@ class NotificationHelper(val context: Context) {
.setColorized(true)
.setAutoCancel(true)
.setCategory(NotificationCompat.CATEGORY_SOCIAL)
// Build style
val style = NotificationCompat.InboxStyle()
for (stream in newStreams) {
style.addLine(stream.name)
@ -76,6 +78,7 @@ class NotificationHelper(val context: Context) {
style.setSummaryText(summary)
style.setBigContentTitle(data.name)
builder.setStyle(style)
// open the channel page when clicking on the notification
builder.setContentIntent(
PendingIntent.getActivity(
@ -87,6 +90,7 @@ class NotificationHelper(val context: Context) {
0
)
)
return Single.create(NotificationIcon(context, data.avatarUrl))
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())