Skip to content

Commit

Permalink
mark regexp as fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sbfnk committed Jul 28, 2023
1 parent f20d45f commit bba3cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/load_survey.r
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ load_survey <- function(files, ...) {
all.x = TRUE
)
}, error = function(cond) {
if (!grepl("cartesian", cond$message)) {
if (!grepl("cartesian", cond$message, fixed = TRUE)) {
stop(cond$message)
}
NULL
Expand Down

0 comments on commit bba3cc1

Please sign in to comment.