Print success to socket if no error was thrown
When Reto Brunners patch is applied (which works really well for me), the user gets to see the message returned by AercServer. Since this is nil if no errors were thrown it prints "result: <nil>" to the cmd. This patch fixes that by just returning success instead of the error message when err != nil.
This commit is contained in:
parent
1bedb8fe06
commit
70c16fc346
|
@ -76,7 +76,11 @@ func (as *AercServer) handleClient(conn net.Conn) {
|
|||
if as.OnMailto != nil {
|
||||
err = as.OnMailto(mailto)
|
||||
}
|
||||
conn.Write([]byte(fmt.Sprintf("result: %v\n", err)))
|
||||
if err != nil {
|
||||
conn.Write([]byte(fmt.Sprintf("result: %v\n", err)))
|
||||
} else {
|
||||
conn.Write([]byte(fmt.Sprint("result: success\n")))
|
||||
}
|
||||
}
|
||||
}
|
||||
as.logger.Printf("Closed Unix connection %d", clientId)
|
||||
|
|
Loading…
Reference in New Issue