Skip to content

Commit

Permalink
fix regression in #130 -> reported in #137
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Jan 27, 2025
1 parent e3b11c2 commit 312d2b4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions R/WFSFeatureType.R
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ WFSFeatureType <- R6Class("WFSFeatureType",
client = private$capabilities$getClient()
ftDescription <- WFSDescribeFeatureType$new(private$capabilities, op = op, private$url, private$version, private$name,
user = client$getUser(), pwd = client$getPwd(), token = client$getToken(), headers = client$getHeaders(),
config = self$getConfig(),
config = client$getConfig(),
logger = self$loggerType)
#exception handling
if(ftDescription$hasException()){
Expand Down Expand Up @@ -350,10 +350,12 @@ WFSFeatureType <- R6Class("WFSFeatureType",
ftFeatures <- do.call(
WFSGetFeature$new,
c(
capabilities = private$capabilities, op = op, url = private$url, version = private$version, typeName = private$name, outputFormat = outputFormat,
user = client$getUser(), pwd = client$getPwd(), token = client$getToken(), headers = client$getHeaders(),
config = client$getConfig(),
logger = self$loggerType,
list(
capabilities = private$capabilities, op = op, url = private$url, version = private$version, typeName = private$name, outputFormat = outputFormat,
user = client$getUser(), pwd = client$getPwd(), token = client$getToken(), headers = client$getHeaders(),
config = client$getConfig(),
logger = self$loggerType
),
vendorParams
)
)
Expand Down

0 comments on commit 312d2b4

Please sign in to comment.