From e0dd1de9d71d30ff304a68e50dcd085249848985 Mon Sep 17 00:00:00 2001 From: edzer Date: Wed, 13 Dec 2023 14:06:27 +0100 Subject: [PATCH] fixes #2286 --- R/valid.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/valid.R b/R/valid.R index d48d270b2..c2122bba5 100644 --- a/R/valid.R +++ b/R/valid.R @@ -95,5 +95,5 @@ st_make_valid.sfc = function(x, ..., oriented = FALSE, s2_options = s2::s2_optio #' @export st_make_valid.sf = function(x, ...) { - st_set_geometry(x, st_make_valid(st_geometry(x))) + st_set_geometry(x, st_make_valid(st_geometry(x), ...)) }