Skip to content

Commit

Permalink
Fix handling of languages
Browse files Browse the repository at this point in the history
  • Loading branch information
csoneson committed Oct 20, 2023
1 parent bf53e82 commit 4e9eb92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion joss-submission-analytics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ whedon <- do.call(dplyr::bind_rows, lapply(whedon, function(w) {
doi = w$doi,
prereview_issue_id = ifelse(!is.null(w$meta_review_issue_id),
w$meta_review_issue_id, NA_integer_),
languages = paste(w$languages, collapse = ","),
languages = gsub(", ", ",", w$languages),
# languages = paste(w$languages, collapse = ","),
archive_doi = w$software_archive)
}))
Expand Down

0 comments on commit 4e9eb92

Please sign in to comment.