Skip to content

Commit

Permalink
cater for medRxiv only
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Funk committed Aug 1, 2024
1 parent 81230e4 commit 28f21e5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _automation/get_new_papers.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ get_new_papers_orcid <- function(orcid, from_date) {
purrr::pluck("data")

if (nrow(refs) > 0) {
if (!("container.title" %in% colnames(refs))) {
refs <- refs |>
dplyr::mutate(container.title = NA_character_)
}
refs <- refs |>
dplyr::mutate(
container.title = dplyr::if_else(
Expand Down

0 comments on commit 28f21e5

Please sign in to comment.