Fix body range bounds validation for long text messages.

This commit is contained in:
Greyson Parrelli
2026-06-16 11:03:55 -04:00
parent 52dcbb8bc6
commit e877f43dde
3 changed files with 50 additions and 5 deletions
@@ -28,7 +28,8 @@ final class LogSectionNotifications implements LogSection {
.append("New contact alerts : ").append(SignalStore.settings().isNotifyWhenContactJoinsSignal()).append("\n")
.append("In-chat sounds : ").append(SignalStore.settings().isMessageNotificationsInChatSoundsEnabled()).append("\n")
.append("Repeat alerts : ").append(SignalStore.settings().getMessageNotificationsRepeatAlerts()).append("\n")
.append("Notification display : ").append(SignalStore.settings().getMessageNotificationsPrivacy()).append("\n\n");
.append("Notification display : ").append(SignalStore.settings().getMessageNotificationsPrivacy()).append("\n")
.append("Force websocket : ").append(SignalStore.settings().getForceWebsocketMode()).append("\n\n");
if (Build.VERSION.SDK_INT >= 26) {
NotificationManager manager = ServiceUtil.getNotificationManager(context);