From 40ac0f4e89c746ee0116c3346d5b756d1f8d1bcb Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Fri, 19 Aug 2022 14:12:03 -0400 Subject: [PATCH] Log media quality setting. --- .../securesms/logsubmit/LogSectionKeyPreferences.java | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionKeyPreferences.java b/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionKeyPreferences.java index ba3ec97e2c..ba86e1af61 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionKeyPreferences.java +++ b/app/src/main/java/org/thoughtcrime/securesms/logsubmit/LogSectionKeyPreferences.java @@ -23,6 +23,7 @@ final class LogSectionKeyPreferences implements LogSection { .append("Password Disabled : ").append(TextSecurePreferences.isPasswordDisabled(context)).append("\n") .append("Prefer Contact Photos: ").append(SignalStore.settings().isPreferSystemContactPhotos()).append("\n") .append("Call Bandwidth Mode : ").append(SignalStore.settings().getCallBandwidthMode()).append("\n") + .append("Media Quality : ").append(SignalStore.settings().getSentMediaQuality()).append("\n") .append("Client Deprecated : ").append(SignalStore.misc().isClientDeprecated()).append("\n") .append("Push Registered : ").append(SignalStore.account().isRegistered()).append("\n") .append("Unauthorized Received: ").append(TextSecurePreferences.isUnauthorizedRecieved(context)).append("\n")