Skip to content

Commit

Permalink
get rid of encoding argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jannes-m committed Sep 5, 2024
1 parent 35d44fa commit c19b4c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/qgis-algorithms.R
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ algorithm_is_native <- function(algorithm) {
#' @keywords internal
qgis_query_algorithms <- function(quiet = FALSE) {
if (qgis_using_json_output()) {
result <- qgis_run(args = c("list", "--json"), encoding = "UTF-8")
result <- qgis_run(args = c("list", "--json"))
if (nchar(result$stderr) > 0L) {
message(
"\nStandard error message from 'qgis_process':\n",
Expand Down

0 comments on commit c19b4c2

Please sign in to comment.