diff --git a/model/types.go b/model/types.go index 2bcfcb6..28dd11a 100644 --- a/model/types.go +++ b/model/types.go @@ -39,6 +39,8 @@ func ParseServiceType(input string) (ServiceType, error) { return Atom, nil case "OGC": return OGCAPI, nil + case "OGCAPI": // TODO This is a temporary fix for the service-spectator. Should be refactored. + return OGCAPI, nil default: return "unknown", fmt.Errorf("could not parse %s as a ServiceType", input) }