Skip to content
Snippets Groups Projects
Verified Commit 10235f0f authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame :jack_o_lantern:
Browse files

fixup! Bug 40933: Add tor-launcher functionality

Bug 43116: Do not run GeoIP queries on Android.

They are known for not working, since we are not shipping the GeoIP
databases to save space. So, avoid spamming the console with warnings.
parent 83748263
No related branches found
No related tags found
1 merge request!1222Bug 43166: Rebased alpha onto 128.3.0esr
......@@ -434,7 +434,9 @@ export class TorProvider {
} else {
node.ipAddrs = await this.#controller.getNodeAddresses(id);
}
if (node.ipAddrs.length) {
// tor-browser#43116, tor-browser-build#41224: on Android, we do not ship
// the GeoIP databases to save some space. So skip it for now.
if (node.ipAddrs.length && !TorLauncherUtil.isAndroid) {
// Get the country code for the node's IP address.
try {
// Expect a 2-letter ISO3166-1 code, which should also be a valid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment