diff --git a/R/exportLogging.R b/R/exportLogging.R index 983f3d03..772a0dc1 100644 --- a/R/exportLogging.R +++ b/R/exportLogging.R @@ -175,7 +175,8 @@ exportLogging.redcapApiConnection <- function( endTime = format(endTime, format = "%Y-%m-%d %H:%M") ) - Log <- as.data.frame(makeApiCall(rcon, body, ...), sep = rcon$csv_delimiter()) + # Testing has shown that logging csv is hardcoded to comma in other LOCALES + Log <- as.data.frame(makeApiCall(rcon, body, ...), sep = ",") timezone <- if(length(beginTime) > 0 && diff --git a/R/exportMetaData.R b/R/exportMetaData.R index 87ad0038..be02953a 100644 --- a/R/exportMetaData.R +++ b/R/exportMetaData.R @@ -54,5 +54,6 @@ exportMetaData.redcapApiConnection <- function(rcon, parameter_name = "forms")) # API Call -------------------------------------------------------- - as.data.frame(makeApiCall(rcon, body, ...), sep = rcon$csv_delimiter()) + # Metadata is always comma separated even under other LOCALES due to CSS + as.data.frame(makeApiCall(rcon, body, ...), sep = ",") }