morgan pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
-
431ff1b6
by Pier Angelo Vendrame at 2024-08-28T20:33:14+00:00
1 changed file:
Changes:
... | ... | @@ -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());
|