diff --git a/app/lib/features/tor/utils/tor_entrypoint.dart b/app/lib/features/tor/utils/tor_entrypoint.dart index 95eb1499..72fae3ba 100644 --- a/app/lib/features/tor/utils/tor_entrypoint.dart +++ b/app/lib/features/tor/utils/tor_entrypoint.dart @@ -58,7 +58,8 @@ Future onStart(ServiceInstance service) async { void addHeartbeat() { timeout?.cancel(); - timeout = Timer(const Duration(minutes: 15), () async { + //Kill service after 1 hour of inactivity + timeout = Timer(const Duration(hours: 1), () async { // logger.i('Terminating tor due to timeout'); await stopService(); });