mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
DROID-3293 Notification | Fix | Misc. fixes (#2079)
This commit is contained in:
parent
cf36b0b1a1
commit
258b705c79
1 changed files with 3 additions and 2 deletions
|
@ -83,13 +83,14 @@ class AnytypeNotificationService @Inject constructor(
|
|||
)
|
||||
}
|
||||
is NotificationPayload.ParticipantRemove -> {
|
||||
val placeholder = context.resources.getString(R.string.untitled)
|
||||
val body = context.resources.getString(
|
||||
R.string.multiplayer_notification_member_removed_from_space,
|
||||
payload.spaceName
|
||||
payload.spaceName.ifEmpty { placeholder }
|
||||
)
|
||||
val title = context.resources.getString(
|
||||
R.string.multiplayer_notification_member_removed_from_space_title,
|
||||
payload.spaceName
|
||||
payload.spaceName.ifEmpty { placeholder }
|
||||
)
|
||||
showBasicNotification(
|
||||
tag = notification.id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue