Skip to content

Commit

Permalink
disable auth headers by default for improved compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
paroj committed Jun 2, 2024
1 parent 4a81f9e commit 4c9d695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/github/paroj/dsub2000/util/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ public static boolean isSyncEnabled(Context context, int instance) {

public static boolean isAuthHeaderEnabled(Context context, int instance) {
SharedPreferences prefs = getPreferences(context);
return prefs.getBoolean(Constants.PREFERENCES_KEY_SERVER_AUTHHEADER + instance, true);
return prefs.getBoolean(Constants.PREFERENCES_KEY_SERVER_AUTHHEADER + instance, false);
}

public static boolean isAllowInsecureEnabled(Context context, int instance) {
Expand Down

0 comments on commit 4c9d695

Please sign in to comment.