mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-12-22 19:09:00 +00:00
Replace fmt.Errorf with no parameters with errors.New (#3747)
This commit is contained in:
parent
af3ce47c44
commit
d18d92f925
@ -78,7 +78,7 @@ func startHttpServer(address listenAddress, actionChannel chan []*action, respon
|
||||
port := address.port
|
||||
apiKey := os.Getenv("FZF_API_KEY")
|
||||
if !address.IsLocal() && len(apiKey) == 0 {
|
||||
return port, fmt.Errorf("FZF_API_KEY is required to allow remote access")
|
||||
return port, errors.New("FZF_API_KEY is required to allow remote access")
|
||||
}
|
||||
addrStr := fmt.Sprintf("%s:%d", host, port)
|
||||
listener, err := net.Listen("tcp", addrStr)
|
||||
|
Loading…
Reference in New Issue
Block a user