linter corrections and added line to changes

This commit is contained in:
Philipp Neumann 2021-05-08 14:53:54 +02:00
parent f1ba8b96c9
commit 1db2d05ee4
2 changed files with 2 additions and 4 deletions

View file

@ -5,7 +5,7 @@ Features ✨:
-
Improvements 🙌:
-
- Priority conversations for Android 11+ (#2734)
Bugfix 🐛:
- Message states cosmetic changes (#3007)

View file

@ -324,7 +324,6 @@ class NotificationDrawerManager @Inject constructor(private val context: Context
.setKey(event.senderId)
.build()
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
val openRoomIntent = RoomDetailActivity.shortcutIntent(context, roomId)
@ -332,8 +331,7 @@ class NotificationDrawerManager @Inject constructor(private val context: Context
.setLongLived(true)
.setIntent(openRoomIntent)
.setShortLabel(roomName)
.setIcon(largeBitmap?.let{IconCompat.createWithAdaptiveBitmap(it)}?: iconLoader.getUserIcon(event.senderAvatarPath))
.setCategories()
.setIcon(largeBitmap?.let { IconCompat.createWithAdaptiveBitmap(it) } ?: iconLoader.getUserIcon(event.senderAvatarPath))
.build()
ShortcutManagerCompat.pushDynamicShortcut(context, shortcut)