fix utf8 ewon (#2478)
This commit is contained in:
parent
5d184d7b91
commit
5e19da8e0d
|
@ -70,6 +70,7 @@ sub manage_selection {
|
|||
next;
|
||||
}
|
||||
|
||||
$result->{name} = $self->{output}->to_utf8($result->{name});
|
||||
$results->{$instance} = $result;
|
||||
}
|
||||
|
||||
|
|
|
@ -224,6 +224,7 @@ sub manage_selection {
|
|||
|
||||
$self->{tags} = {};
|
||||
foreach (keys %$tags) {
|
||||
$tags->{$_} = $self->{output}->to_utf8($tags->{$_});
|
||||
if (defined($self->{option_results}->{filter_tag_index}) && $self->{option_results}->{filter_tag_index} ne '' &&
|
||||
$_ !~ /$self->{option_results}->{filter_tag_index}/) {
|
||||
$self->{output}->output_add(long_msg => "skipping '" . $tags->{$_} . "': no matching 'org' filter.", debug => 1);
|
||||
|
|
Loading…
Reference in New Issue