ui-fixes #46

Merged
erinn merged 3 commits from ui-fixes into trunk 2021-06-02 19:40:34 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 53d11dc45d - Show all commits

2
lib.go
View File

@ -89,7 +89,7 @@ func StartCwtch(appDir string, torPath string) {
acn, err := tor.NewTorACNWithAuth(path.Join(appDir, "/.tor"), torPath, controlPort, tor.HashedPasswordAuthenticator{Password: base64.StdEncoding.EncodeToString(key)})
if err != nil {
log.Errorf("\nError connecting to Tor replacing with ErrorACN: %v\n", err)
// Replace the nil acn with a stab that will do nothing but report this error to the user...
// Replace the nil acn with a stub that will do nothing but report this error to the user...
acn = new(utils.ErrorACN)
}
globalACN = acn