From 3619f9b1cbfddd5956d2495e34bbe8b77bfcf14e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Jochum?= Date: Mon, 5 Oct 2020 01:22:11 +0200 Subject: [PATCH] Ignore non-existant liveproxy folder --- lql/multi_client.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lql/multi_client.go b/lql/multi_client.go index 0865b51..714b6d9 100644 --- a/lql/multi_client.go +++ b/lql/multi_client.go @@ -56,7 +56,8 @@ func (c *MultiClient) CreateClients() error { files, err := ioutil.ReadDir(c.liveproxyDir) if err != nil { - return err + // Ignore listing errors and use the local client only + return nil } var result error