Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion R/exportLogging.R
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down
3 changes: 2 additions & 1 deletion R/exportMetaData.R
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ",")
}
Loading