Skip to content
Snippets Groups Projects
Verified Commit 5de6beed authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixes #147

parent 52a28862
Branches
Tags
No related merge requests found
...@@ -196,7 +196,9 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C ...@@ -196,7 +196,9 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
.setName(selfInfo.nick) .setName(selfInfo.nick)
.setIcon(IconCompat.createWithBitmap(bitmapFromDrawable(selfInfo.avatar))) .setIcon(IconCompat.createWithBitmap(bitmapFromDrawable(selfInfo.avatar)))
.build() .build()
).setConversationTitle(bufferInfo.bufferName) )
.setGroupConversation(!bufferInfo.type.hasFlag(Buffer_Type.QueryBuffer))
.setConversationTitle(bufferInfo.bufferName)
.also { .also {
for (notification in notifications) { for (notification in notifications) {
it.addMessage( it.addMessage(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment