Pier Angelo Vendrame pushed to branch tor-browser-140.8.0esr-15.0-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • mobile/android/geckoview/src/main/java/org/mozilla/geckoview/TorAndroidIntegration.java
    ... ... @@ -100,7 +100,7 @@ public class TorAndroidIntegration implements BundleEventListener {
    100 100
       /* package */ TorAndroidIntegration(Context context) {
    
    101 101
         mLibraryDir = context.getApplicationInfo().nativeLibraryDir;
    
    102 102
         mCacheDir = context.getCacheDir().getAbsolutePath();
    
    103
    -    mIpcDirectory = mCacheDir + "/tor-private";
    
    103
    +    mIpcDirectory = new File(context.getFilesDir(), "tor-ipc").getAbsolutePath();
    
    104 104
         mDataDir = new File(context.getFilesDir(), "tor");
    
    105 105
         registerListener();
    
    106 106
       }