Skip to content

Commit

Permalink
Fix R-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Mar 10, 2024
1 parent ffa7e96 commit b78de59
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions R/telemetry.R
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,9 @@ expr_scrub <- function(x, name_map) {
return("<character>")
} else if (is.factor(xx)) {
return("<factor>")
} else if (is.null(xx)) {
# Needed for R 4.4
return(xx)
} else if (is.atomic(xx)) {
return(xx)
} else if (is_symbol(xx)) {
Expand Down

0 comments on commit b78de59

Please sign in to comment.