allow message correction by default since security implications are negligible
Conversations only allows correction of the *last* message. so nudging a message into oblivion by adding a message correction doesn't work. also conversations checks the fingerprint for encrypted messages
This commit is contained in:
parent
eb3ac1c326
commit
e90e333f29
|
@ -2825,7 +2825,7 @@ public class XmppConnectionService extends Service {
|
|||
}
|
||||
|
||||
public boolean allowMessageCorrection() {
|
||||
return getPreferences().getBoolean("allow_message_correction", false);
|
||||
return getPreferences().getBoolean("allow_message_correction", true);
|
||||
}
|
||||
|
||||
public boolean sendChatStates() {
|
||||
|
|
|
@ -179,7 +179,7 @@
|
|||
android:summary="@string/pref_remove_trusted_certificates_summary"
|
||||
android:title="@string/pref_remove_trusted_certificates_title"/>
|
||||
<CheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:defaultValue="true"
|
||||
android:key="allow_message_correction"
|
||||
android:title="@string/pref_allow_message_correction"
|
||||
android:summary="@string/pref_allow_message_correction_summary"/>
|
||||
|
|
Loading…
Reference in a new issue