Disable non-blocking identity changes for iOS compat

// FREEBIE
This commit is contained in:
Moxie Marlinspike
2016-10-05 10:27:32 -07:00
parent 5ed1c9c72b
commit 549e45e2d6
3 changed files with 12 additions and 11 deletions

View File

@@ -115,7 +115,8 @@ public class TextSecurePreferences {
}
public static boolean isBlockingIdentityUpdates(Context context) {
return getBooleanPreference(context, BLOCKING_IDENTITY_CHANGES_PREF, false);
return true;
// return getBooleanPreference(context, BLOCKING_IDENTITY_CHANGES_PREF, false);
}
public static void setBlockingIdentityUpdates(Context context, boolean value) {