Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop encoding = "UTF-8" for JSON in all places #220

Merged
merged 6 commits into from
Sep 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
qgis_run_algorithm(): drop encoding arg (see PR #219)
florisvdh committed Sep 6, 2024
commit 990ffa9c90ca66f838e868b3252e7643845ac32b
3 changes: 1 addition & 2 deletions R/qgis-run-algorithm.R
Original file line number Diff line number Diff line change
@@ -137,8 +137,7 @@ qgis_run_algorithm <- function(algorithm, ..., PROJECT_PATH = NULL, ELLIPSOID =
echo_cmd = !.quiet,
stdout_callback = if (!.quiet && !use_json_output) function(x, ...) cat(x),
stderr_callback = function(x, ...) message(x, appendLF = FALSE),
stdin = if (use_json_input) stdin_file,
encoding = if (use_json_output) "UTF-8" else ""
stdin = if (use_json_input) stdin_file
)

if (!.quiet) cat("\n")