Pier Angelo Vendrame pushed to branch tor-browser-115.9.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
c2461f1d by clairehurst at 2024-03-20T09:39:13+01:00
fixup! Bug 42247: Android helpers for the TorProvider
Moved setSettings and TorLegacyAndroidSettings.setMigrated() into a new
if block in onPostExecute() from doInBackground().
- - - - -
1 changed file:
- mobile/android/geckoview/src/main/java/org/mozilla/geckoview/TorIntegrationAndroid.java
Changes:
=====================================
mobile/android/geckoview/src/main/java/org/mozilla/geckoview/TorIntegrationAndroid.java
=====================================
@@ -181,8 +181,6 @@ public class TorIntegrationAndroid implements BundleEventListener {
TorSettings settings;
if (TorLegacyAndroidSettings.unmigrated()) {
settings = TorLegacyAndroidSettings.loadTorSettings();
- setSettings(settings, true, true);
- TorLegacyAndroidSettings.setMigrated();
} else {
GeckoBundle bundle = message.getBundle("settings");
settings = new TorSettings(bundle);
@@ -193,6 +191,10 @@ public class TorIntegrationAndroid implements BundleEventListener {
@Override
protected void onPostExecute(TorSettings torSettings) {
mSettings = torSettings;
+ if (TorLegacyAndroidSettings.unmigrated()) {
+ setSettings(mSettings, true, true);
+ TorLegacyAndroidSettings.setMigrated();
+ }
}
}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c2461f1…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c2461f1…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch tor-browser-115.9.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
70684ff4 by Richard Pospesel at 2024-03-19T21:12:29+00:00
fixup! Bug 40562: Added Tor Browser preferences to 000-tor-browser.js
Bug 42458: Update the "Submit Feedback" link in "About Tor Browser"
- - - - -
1 changed file:
- browser/app/profile/000-tor-browser.js
Changes:
=====================================
browser/app/profile/000-tor-browser.js
=====================================
@@ -10,7 +10,7 @@ pref("app.releaseNotesURL", "about:blank");
// easily found in about:tor
pref("app.releaseNotesURL.aboutDialog", "about:blank");
// point to our feedback url rather than Mozilla's
-pref("app.feedback.baseURL", "https://support.torproject.org/%LOCALE%/get-in-touch/");
+pref("app.feedback.baseURL", "https://support.torproject.org/%LOCALE%/misc/bug-or-feedback/");
pref("browser.shell.checkDefaultBrowser", false);
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/70684ff…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/70684ff…
You're receiving this email because of your account on gitlab.torproject.org.