Bump libsignal to v0.69.1.

This commit is contained in:
andrew-signal
2025-04-09 09:00:46 -05:00
committed by Michelle Tang
parent 6afeb45f43
commit 0d611cf4c9
6 changed files with 26 additions and 14 deletions

View File

@@ -21,7 +21,7 @@ public class LogSectionRemoteConfig implements LogSection {
@Override
public @NonNull CharSequence getContent(@NonNull Context context) {
StringBuilder out = new StringBuilder();
Map<String, Object> memory = RemoteConfig.getDebugMemoryValues();
Map<String, Object> memory = RemoteConfig.getMemoryValues();
Map<String, Object> disk = RemoteConfig.getDebugDiskValues();
Map<String, Object> pending = RemoteConfig.getDebugPendingDiskValues();
int remoteLength = Stream.of(memory.keySet()).map(String::length).max(Integer::compareTo).orElse(0);