Skip to content
Snippets Groups Projects
Commit d9a1747d authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame :jack_o_lantern: Committed by morgan
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 1b327909
No related branches found
No related tags found
2 merge requests!1202Bug_43099: 2024 YEC Strings,!1173Bug 43116: Do not run GeoIP queries on Android.
......@@ -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