make change

This commit is contained in:
miloschwartz
2026-08-24 09:18:51 -04:00
parent fbd977d261
commit 506286ddfd
2 changed files with 5 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
// Package ips contains a list of current cloud flare IP ranges
package ips
// CFIPs is the CloudFlare Server IP list (this is checked on build).
func CFIPs() []string {
return []string{
"173.245.48.0/20",

View File

@@ -70,10 +70,10 @@ type Badger struct {
}
func stringOrDefault(value, def string) string {
if value == "" {
return def
if value != "" {
return value
}
return value
return def
}
type VerifyBody struct {