mirror of
https://codeberg.org/monocles/monocles_chat.git
synced 2025-02-01 09:41:35 +01:00
disallow message correction by default. fixes #1720
This commit is contained in:
parent
dc00a92499
commit
7fd6a37e67
2 changed files with 2 additions and 2 deletions
|
@ -2629,7 +2629,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean allowMessageCorrection() {
|
public boolean allowMessageCorrection() {
|
||||||
return getPreferences().getBoolean("allow_message_correction", true);
|
return getPreferences().getBoolean("allow_message_correction", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean sendChatStates() {
|
public boolean sendChatStates() {
|
||||||
|
|
|
@ -147,7 +147,7 @@
|
||||||
android:summary="@string/pref_remove_trusted_certificates_summary"
|
android:summary="@string/pref_remove_trusted_certificates_summary"
|
||||||
android:title="@string/pref_remove_trusted_certificates_title"/>
|
android:title="@string/pref_remove_trusted_certificates_title"/>
|
||||||
<CheckBoxPreference
|
<CheckBoxPreference
|
||||||
android:defaultValue="true"
|
android:defaultValue="false"
|
||||||
android:key="allow_message_correction"
|
android:key="allow_message_correction"
|
||||||
android:title="@string/pref_allow_message_correction"
|
android:title="@string/pref_allow_message_correction"
|
||||||
android:summary="@string/pref_allow_message_correction_summary"/>
|
android:summary="@string/pref_allow_message_correction_summary"/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue