Skip to content

Commit

Permalink
fix: two confirmation boxes when opening a link
Browse files Browse the repository at this point in the history
Signed-off-by: Next Alone <[email protected]>
  • Loading branch information
NextAlone committed Nov 5, 2024
1 parent bef68a9 commit e48e69f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@ private static boolean isWhitelisted(MediaCodecInfo codecInfo) {
public static boolean raiseToListen = true;
public static boolean nextMediaTap = true;
public static boolean recordViaSco = false;
public static boolean customTabs = true;
public static boolean inappBrowser = true;
public static boolean customTabs = false;
public static boolean inappBrowser = false;
public static boolean adaptableColorInBrowser = true;
public static boolean onlyLocalInstantView = false;
public static boolean directShare = true;
Expand Down Expand Up @@ -859,7 +859,7 @@ public static void loadConfig() {
raiseToSpeak = preferences.getBoolean("raise_to_speak", false);
nextMediaTap = preferences.getBoolean("next_media_on_tap", true);
recordViaSco = preferences.getBoolean("record_via_sco", false);
customTabs = preferences.getBoolean("custom_tabs", true);
customTabs = preferences.getBoolean("custom_tabs", false);
inappBrowser = preferences.getBoolean("inapp_browser", false);
adaptableColorInBrowser = preferences.getBoolean("adaptableBrowser", false);
onlyLocalInstantView = preferences.getBoolean("onlyLocalInstantView", BuildVars.DEBUG_PRIVATE_VERSION);
Expand Down

0 comments on commit e48e69f

Please sign in to comment.