[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-128.2.0esr-14.0-1] fixup! Bug 40933: Add tor-launcher functionality



Title: GitLab

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
    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.
    

1 changed file:

Changes:

  • toolkit/components/tor-launcher/TorProvider.sys.mjs
    ... ... @@ -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
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits