TorManager: assume PLATFORM_INSTALLER has Tor

This commit is contained in:
tobtoht 2022-07-08 11:58:07 +02:00
parent a09cb3f542
commit 4990ca09c3
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C

View file

@ -231,7 +231,7 @@ bool TorManager::shouldStartTorDaemon() {
}
// Don't start a Tor daemon if we don't have one
#ifndef HAS_TOR_BIN
#if !defined(HAS_TOR_BIN) && !defined(PLATFORM_INSTALLER)
qWarning() << "Feather built without embedded Tor. Assuming --use-local-tor";
return false;
#endif