
henry pushed to branch tor-browser-140.0a1-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 297b2e99 by Henry Wilkes at 2025-06-12T17:52:26+00:00 fixup! TB 40933: Add tor-launcher functionality TB 43577: Do not try and flush settings to torrc on android. - - - - - 1 changed file: - toolkit/components/tor-launcher/TorProvider.sys.mjs Changes: ===================================== toolkit/components/tor-launcher/TorProvider.sys.mjs ===================================== @@ -356,6 +356,10 @@ export class TorProvider { } async flushSettings() { + if (TorLauncherUtil.isAndroid) { + // Android does not have a torrc to flush to. See tor-browser#43577. + return; + } await this.#controller.flushSettings(); } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/297b2e99... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/297b2e99... You're receiving this email because of your account on gitlab.torproject.org.
participants (1)
-
henry (@henry)