Skip to content

Commit

Permalink
fix: wrong default setting for updateStickersOrderOnSend
Browse files Browse the repository at this point in the history
Signed-off-by: qwq233 <[email protected]>
  • Loading branch information
qwq233 committed Nov 22, 2024
1 parent c17e2b3 commit d341f5b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ private static boolean isWhitelisted(MediaCodecInfo codecInfo) {
public static boolean disableVoiceAudioEffects;
public static boolean forceDisableTabletMode;
public static boolean useLNavigation;
public static boolean updateStickersOrderOnSend = Config.disableStickersAutoReorder;
public static boolean updateStickersOrderOnSend = !Config.disableStickersAutoReorder;
public static boolean bigCameraForRound;
public static Boolean useCamera2Force;
public static boolean useNewBlur;
Expand Down Expand Up @@ -923,7 +923,7 @@ public static void loadConfig() {
dontAskManageStorage = preferences.getBoolean("dontAskManageStorage", false);
hasEmailLogin = preferences.getBoolean("hasEmailLogin", false);
isFloatingDebugActive = preferences.getBoolean("floatingDebugActive", false);
updateStickersOrderOnSend = Config.disableStickersAutoReorder;
updateStickersOrderOnSend = !Config.disableStickersAutoReorder;
dayNightWallpaperSwitchHint = preferences.getInt("dayNightWallpaperSwitchHint", 0);
bigCameraForRound = preferences.getBoolean("bigCameraForRound", false);
useNewBlur = preferences.getBoolean("useNewBlur", true);
Expand Down

0 comments on commit d341f5b

Please sign in to comment.