Skip to content

Commit

Permalink
Fix solution to #191
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Oct 15, 2020
1 parent c5be512 commit 6ef4c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/class_meta.R
Expand Up @@ -48,7 +48,7 @@ meta_class <- R6::R6Class(
names_records <- self$list_records()
names_targets <- pipeline_get_names(pipeline)
names_parents <- intersect(names_records, names_targets)
names_children <- map(names_parents, ~self$get_record(.x)$children)
names_children <- map(names_parents, ~self$database$get_row(.x)$children)
names_children <- as.character(unlist(names_children))
names_children <- names_children[!is.na(names_children)]
names_current <- c(names_envir, names_targets, names_children)
Expand Down

0 comments on commit 6ef4c4f

Please sign in to comment.