One of our user is unable to init Tor when executing:
await _tor.enable();
await _tor.start();
await _tor.isReady();
The error thrown is: tor: problem with filesystem permissions: Error setting up the persistent state manager
May it be related to?:
final Directory appSupportDir = await getApplicationSupportDirectory();
final stateDir =
await Directory('${appSupportDir.path}/tor_state').create();
final cacheDir =
await Directory('${appSupportDir.path}/tor_cache').create();