morgan pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
- 
d9a1747d
by Pier Angelo Vendrame at 2024-09-05T04:52:30+00:00
 
1 changed file:
Changes:
| ... | ... | @@ -434,7 +434,9 @@ export class TorProvider { | 
| 434 | 434 |      } else {
 | 
| 435 | 435 |        node.ipAddrs = await this.#controller.getNodeAddresses(id);
 | 
| 436 | 436 |      }
 | 
| 437 | -    if (node.ipAddrs.length) {
 | 
|
| 437 | +    // tor-browser#43116, tor-browser-build#41224: on Android, we do not ship
 | 
|
| 438 | +    // the GeoIP databases to save some space. So skip it for now.
 | 
|
| 439 | +    if (node.ipAddrs.length && !TorLauncherUtil.isAndroid) {
 | 
|
| 438 | 440 |        // Get the country code for the node's IP address.
 | 
| 439 | 441 |        try {
 | 
| 440 | 442 |          // Expect a 2-letter ISO3166-1 code, which should also be a valid
 |