mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-28 22:18:46 +03:00
Hide redactions by default
Change-Id: I498ca35464f7f42b70e21ca451b94702aefee8d6
This commit is contained in:
parent
d538ee4dcb
commit
12e97fbed2
2 changed files with 2 additions and 2 deletions
|
@ -690,7 +690,7 @@ class VectorPreferences @Inject constructor(private val context: Context) {
|
|||
* @return true if the redacted should be shown
|
||||
*/
|
||||
fun showRedactedMessages(): Boolean {
|
||||
return defaultPrefs.getBoolean(SETTINGS_SHOW_REDACTED_KEY, true)
|
||||
return defaultPrefs.getBoolean(SETTINGS_SHOW_REDACTED_KEY, false)
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
android:title="@string/settings_show_read_receipts" />
|
||||
|
||||
<im.vector.app.core.preference.VectorSwitchPreference
|
||||
android:defaultValue="true"
|
||||
android:defaultValue="false"
|
||||
android:key="SETTINGS_SHOW_REDACTED_KEY"
|
||||
android:summary="@string/settings_show_redacted_summary"
|
||||
android:title="@string/settings_show_redacted" />
|
||||
|
|
Loading…
Reference in a new issue