diff --git a/internal/pihole/client.go b/internal/pihole/client.go index 5558e2b..25b6de9 100644 --- a/internal/pihole/client.go +++ b/internal/pihole/client.go @@ -7,7 +7,6 @@ import ( "log" "net/http" "net/url" - "os" "strconv" "strings" "time" @@ -119,11 +118,6 @@ func (c *Client) getPHPSessionID() (sessionID string) { log.Printf("An error has occured during login to PI-Hole: %v", err) } - if resp.StatusCode != http.StatusOK { - log.Printf("Unable to login to PI-Hole, got a HTTP status code response '%d' instead of '%d'", resp.StatusCode, http.StatusFound) - os.Exit(1) - } - for _, cookie := range resp.Cookies() { if cookie.Name == "PHPSESSID" { sessionID = cookie.Value