diff --git a/internal/cloudapi/v2/v2.go b/internal/cloudapi/v2/v2.go index 66b91b9d5..08f0afea6 100644 --- a/internal/cloudapi/v2/v2.go +++ b/internal/cloudapi/v2/v2.go @@ -290,6 +290,8 @@ func (h *apiHandlers) PostCompose(ctx echo.Context) error { return HTTPError(ErrorInvalidOSTreeRef) case ostree.ResolveRefError: return HTTPErrorWithInternal(ErrorInvalidOSTreeRepo, v) + case ostree.ParameterComboError: + return HTTPError(ErrorInvalidOSTreeParams) default: // general case return HTTPError(ErrorInvalidOSTreeParams)