Leave the Cwtch.app local path in

This commit is contained in:
fyne 2021-09-04 18:48:49 +01:00
parent b53f43d946
commit be0c4f4d64
1 changed files with 3 additions and 1 deletions

View File

@ -115,7 +115,9 @@ class CwtchFfi implements Cwtch {
bundledTor = "Tor\\Tor\\tor.exe";
} else if (Platform.isMacOS) {
cwtchDir = envVars['CWTCH_HOME'] ?? path.join(envVars['HOME']!, "Library/Application Support/Cwtch");
if (await File("/Applications/Cwtch.app/Contents/MacOS/Tor/tor.real").exists()) {
if (await File("Cwtch.app/Contents/MacOS/Tor/tor.real").exists()) {
bundledTor = "Cwtch.app/Contents/MacOS/Tor/tor.real";
} else if (await File("/Applications/Cwtch.app/Contents/MacOS/Tor/tor.real").exists()) {
bundledTor = "/Applications/Cwtch.app/Contents/MacOS/Tor/tor.real";
} else if (await File("/Volumes/Cwtch/Cwtch.app/Contents/MacOS/Tor/tor.real").exists()) {
bundledTor = "/Volumes/Cwtch/Cwtch.app/Contents/MacOS/Tor/tor.real";