From 444d37182fc5e94f4bd7bb468d4efa0cd7a5977c Mon Sep 17 00:00:00 2001 From: Jelle Dijkstra Date: Tue, 26 May 2026 12:02:25 +0200 Subject: [PATCH] Bugfix for parsing service type label of ogcapis --- model/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/types.go b/model/types.go index 459afee..2bcfcb6 100644 --- a/model/types.go +++ b/model/types.go @@ -37,7 +37,7 @@ func ParseServiceType(input string) (ServiceType, error) { return WFS, nil case "ATOM": return Atom, nil - case "OGCAPI": + case "OGC": return OGCAPI, nil default: return "unknown", fmt.Errorf("could not parse %s as a ServiceType", input)