We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e02031 commit 560b684Copy full SHA for 560b684
1 file changed
R/eventInfo.R
@@ -12,10 +12,10 @@
12
yaml::read_yaml(edata)
13
}
14
15
-.filterType <- function(type) {
+.selectType <- function(type) {
16
edata <- .readYmlConfig()
17
if (!type %in% names(edata))
18
- stop("<internal> 'type' not supported; contact organizers")
+ stop("<internal> 'format' section in yaml not found")
19
edata[[type]]
20
21
@@ -27,7 +27,7 @@
27
28
29
eventData <- function(eid, type) {
30
- edata <- .filterType(type)
+ edata <- .selectType(type)
31
edata <- .filterCheckEID(edata, eid)
32
edata[["esticker"]] <- .cache_url_file(edata[["stickerdl"]])
33
edata
0 commit comments