From 0297c3401dd8f4e2225b7fd1b75c42179c238d05 Mon Sep 17 00:00:00 2001 From: "Steven M. Mortimer" Date: Sun, 9 Jun 2019 22:21:23 -0400 Subject: [PATCH] Add missing assignment of soap url --- R/utils-org.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/R/utils-org.R b/R/utils-org.R index 4316263d..abef552e 100644 --- a/R/utils-org.R +++ b/R/utils-org.R @@ -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), @@ -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),