Improved notification text when more than 1 file is inside the message + updated RC flags

This commit is contained in:
Sylvain Berfini 2022-10-11 16:12:07 +02:00
parent eb63d63276
commit 072db50727
3 changed files with 8 additions and 1 deletions

View file

@ -28,6 +28,7 @@ Group changes to describe their impact on the project, as follows:
### Changed ### Changed
- In-call views have been re-designed - In-call views have been re-designed
- "Media Encryption Mandatory" setting now allows for any media encryption (instead of only the one selected in the above setting previously)
- Improved how call logs are handled to improve performances - Improved how call logs are handled to improve performances
- Improved how contact avatars are generated - Improved how contact avatars are generated
- 3-dots menu even for basic chat rooms with more options - 3-dots menu even for basic chat rooms with more options

View file

@ -8,6 +8,9 @@
mtu=1300 mtu=1300
force_ice_disablement=0 force_ice_disablement=0
[rtp]
accept_any_encryption=1
[sip] [sip]
guess_hostname=1 guess_hostname=1
register_only_when_network_is_up=1 register_only_when_network_is_up=1
@ -26,7 +29,7 @@ ec_calibrator_cool_tones=1
[video] [video]
displaytype=MSAndroidTextureDisplay displaytype=MSAndroidTextureDisplay
auto_resize_preview_to_keep_ratio=1 auto_resize_preview_to_keep_ratio=1
max_mosaic_size=vga max_conference_size=vga
[misc] [misc]
enable_basic_to_client_group_chat_room_migration=0 enable_basic_to_client_group_chat_room_migration=0

View file

@ -728,6 +728,9 @@ class NotificationsManager(private val context: Context) {
if (text.isEmpty()) { if (text.isEmpty()) {
for (content in message.contents) { for (content in message.contents) {
if (text.isNotEmpty()) {
text += ", "
}
text += content.name text += content.name
} }
} }