morgan pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • mobile/android/geckoview/src/main/java/org/mozilla/geckoview/TorIntegrationAndroid.java
    ... ... @@ -289,13 +289,16 @@ public class TorIntegrationAndroid implements BundleEventListener {
    289 289
                     Log.w(TAG, "torrc-default cannot be created, pluggable transports will not be available", e);
    
    290 290
                     copied = false;
    
    291 291
                 }
    
    292
    -            try {
    
    292
    +            // tor-browser#42607: For now we do not ship geoip databases, as we
    
    293
    +            // do not have the circuit display functionality and they allow us
    
    294
    +            // to save some space in the final APK.
    
    295
    +            /*try {
    
    293 296
                     copyAndUseConfigFile("GeoIPFile", "geoip", args);
    
    294 297
                     copyAndUseConfigFile("GeoIPv6File", "geoip6", args);
    
    295 298
                 } catch (IOException e) {
    
    296 299
                     Log.w(TAG, "GeoIP files cannot be created, this feature will not be available.", e);
    
    297 300
                     copied = false;
    
    298
    -            }
    
    301
    +            }*/
    
    299 302
                 mCopiedConfigFiles = copied;
    
    300 303
     
    
    301 304
                 Log.d(TAG, "Starting tor with the follwing args: " + args.toString());