Browse Source

fix(consts): return default identify properties if response status code is not OK

ayn2op 7 months ago
parent
commit
b3f9a2f6fa
1 changed files with 4 additions and 0 deletions
  1. 4 0
      internal/consts/consts.go

+ 4 - 0
internal/consts/consts.go

@@ -71,6 +71,10 @@ func GetIdentifyProps() gateway.IdentifyProperties {
 	}
 	defer resp.Body.Close()
 
+	if resp.StatusCode != http.StatusOK {
+		return defaultIdentifyProps
+	}
+
 	var props Properties
 	if err := json.NewDecoder(resp.Body).Decode(&props); err != nil {
 		return defaultIdentifyProps