From f190316b9aca2c5a1a5650383d502efa7b0458ae Mon Sep 17 00:00:00 2001 From: qgarnier Date: Fri, 1 Oct 2021 11:45:06 +0200 Subject: [PATCH] enh(windows/local): pending-reboot mode - encoding management (#3169) --- os/windows/local/mode/pendingreboot.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/windows/local/mode/pendingreboot.pm b/os/windows/local/mode/pendingreboot.pm index cfbe47b68..5fdd099bc 100644 --- a/os/windows/local/mode/pendingreboot.pm +++ b/os/windows/local/mode/pendingreboot.pm @@ -140,7 +140,7 @@ sub manage_selection { my $decoded; eval { - $decoded = JSON::XS->new->utf8->decode($stdout); + $decoded = JSON::XS->new->decode($self->{output}->decode($stdout)); }; if ($@) { $self->{output}->add_option_msg(short_msg => "Cannot decode json response: $@");