mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-06-11 17:54:30 -04:00
ironfox-oss/IronFox!123 ____ ## Changes - Updated to Firefox [`147.0.3`](https://firefox.com/firefox/android/147.0.3/releasenotes/). - Backported a fix for [an upstream bug](https://bugzilla.mozilla.org/show_bug.cgi?id=2013976) to ensure that canvas data is properly randomized. - Fixed [an issue](https://gitlab.com/ironfox-oss/IronFox/-/issues/231) that prevented `tel` links from opening the dialer app. - Various improvements to the build process. - Other minor tweaks, fixes, and refinements. MR-author: celenity <celenity@celenity.dev> Co-authored-by: Weblate <hosted@weblate.org> Approved-by: celenity <celenity@celenity.dev> Merged-by: celenity <celenity@celenity.dev>
14 lines
644 B
Diff
14 lines
644 B
Diff
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
index c7db941b0f7e..332418e2300b 100644
|
|
--- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
+++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt
|
|
@@ -1053,7 +1053,7 @@ class Settings(
|
|
|
|
var shouldUseHttpsOnly by booleanPreference(
|
|
appContext.getPreferenceKey(R.string.pref_key_https_only),
|
|
- default = false,
|
|
+ default = true,
|
|
)
|
|
|
|
var shouldUseHttpsOnlyInAllTabs by booleanPreference(
|