Removed app kill depending on auth status code (fixes #15)

This commit is contained in:
Vincent Composieux 2019-10-02 15:17:11 +02:00
parent d72e73ce97
commit f556b22890
No known key found for this signature in database
GPG Key ID: 7306974ABA6382AC

View File

@ -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