Skip to content

Commit

Permalink
fix: Min to min_na_rm
Browse files Browse the repository at this point in the history
  • Loading branch information
dshemetov committed Mar 18, 2024
1 parent 36df977 commit dfd0105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/methods-epi_archive_new.R
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ epix_merge2 <- function(x, y,
if (all(is.na(c(x$clobberable_versions_start, y$clobberable_versions_start)))) {
NA # (any type of NA is fine here)
} else {
Min(c(x$clobberable_versions_start, y$clobberable_versions_start))
min_na_rm(c(x$clobberable_versions_start, y$clobberable_versions_start))
}

# The actual merge below may not succeed 100% of the time, so do this
Expand Down

0 comments on commit dfd0105

Please sign in to comment.