Actually, this check is reduntant, move defering to network type check.

This commit is contained in:
Alexander Andreev 2022-06-26 14:54:11 +04:00
parent e9dc53e542
commit 1130568e39
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 1 additions and 4 deletions

View File

@ -28,10 +28,6 @@ func main() {
return
}
if !strings.ContainsRune(*listenAddress, ':') {
defer os.Remove(*listenAddress)
}
captcha.Init(*captchaExpire)
hand := handlers.New(*captchaExpire)
@ -45,6 +41,7 @@ func main() {
var network string
if !strings.ContainsRune(*listenAddress, ':') {
network = "unix"
defer os.Remove(*listenAddress)
} else {
ap, err := netip.ParseAddrPort(*listenAddress)
if err != nil {