Skip to content

Commit 3d561a5

Browse files
committed
fix: missing comma
1 parent ee42326 commit 3d561a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

geoblock.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ func (a *GeoBlock) getCountryCode(req *http.Request, ipAddressString string) (st
410410
a.infoLogger.Printf(
411411
"%s: Failed to read country from HTTP header field [%s], continuing with API lookup.",
412412
a.name,
413-
a.iPGeolocationHTTPHeaderField
413+
a.iPGeolocationHTTPHeaderField,
414414
)
415415
}
416416
}
@@ -598,7 +598,7 @@ func printConfiguration(name string, config *Config, logger *log.Logger) {
598598
logger.Printf("%s: use custom HTTP header field for country lookup: %t [%s]",
599599
name,
600600
true,
601-
config.IPGeolocationHTTPHeaderField
601+
config.IPGeolocationHTTPHeaderField,
602602
)
603603
}
604604
logger.Printf("%s: API uri: %s", name, config.API)

0 commit comments

Comments
 (0)