spelling
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Sarah Jamie Lewis 2021-06-02 12:36:21 -07:00
parent ee47798714
commit 53d11dc45d
1 changed files with 1 additions and 1 deletions

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