Skip to content

Commit

Permalink
Add missing assignment of soap url
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMMortimer committed Jun 10, 2019
1 parent 56d71e7 commit 0297c34
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/utils-org.R
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,7 @@ sf_get_deleted <- function(object_name,
verbose = FALSE){
stopifnot(any(class(start) %in% c("Date", "POSIXct", "POSIXt", "POSIXlt")))
stopifnot(any(class(end) %in% c("Date", "POSIXct", "POSIXt", "POSIXlt")))
base_soap_url <- make_base_soap_url()
r <- make_soap_xml_skeleton()
xml_dat <- build_soap_xml_from_list(input_data = list(start = start,
end = end),
Expand Down Expand Up @@ -689,6 +690,7 @@ sf_get_updated <- function(object_name,
verbose = FALSE){
stopifnot(any(class(start) %in% c("Date", "POSIXct", "POSIXt", "POSIXlt")))
stopifnot(any(class(end) %in% c("Date", "POSIXct", "POSIXt", "POSIXlt")))
base_soap_url <- make_base_soap_url()
r <- make_soap_xml_skeleton()
xml_dat <- build_soap_xml_from_list(input_data = list(start = start,
end = end),
Expand Down

0 comments on commit 0297c34

Please sign in to comment.