about summary refs log tree commit diff
path: root/bskyweb
diff options
context:
space:
mode:
authorJim Calabro <jamesrcalabro@gmail.com>2025-07-14 17:22:41 -0400
committerGitHub <noreply@github.com>2025-07-14 16:22:41 -0500
commitc9c91fb113f9c80c5e0be8244ee367a7c9f934b2 (patch)
tree2b4dc771e4878eb5268a38bcc4ade1a3902ff472 /bskyweb
parent6375c54aa4f7cfd2050a5d6438644c1c5c16c2d8 (diff)
downloadvoidsky-c9c91fb113f9c80c5e0be8244ee367a7c9f934b2.tar.zst
omitempty on aa (#8647)
Diffstat (limited to 'bskyweb')
-rw-r--r--bskyweb/cmd/bskyweb/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go
index d9827c757..ade7e1065 100644
--- a/bskyweb/cmd/bskyweb/server.go
+++ b/bskyweb/cmd/bskyweb/server.go
@@ -604,7 +604,7 @@ type IPCCRequest struct {
 }
 type IPCCResponse struct {
 	CC               string `json:"countryCode"`
-	AgeRestrictedGeo bool   `json:"isAgeRestrictedGeo"`
+	AgeRestrictedGeo bool   `json:"isAgeRestrictedGeo,omitempty"`
 }
 
 func (srv *Server) WebIpCC(c echo.Context) error {