diff --git a/PVE/API2/Storage/Scan.pm b/PVE/API2/Storage/Scan.pm index 0e6fd9a..44d6628 100644 --- a/PVE/API2/Storage/Scan.pm +++ b/PVE/API2/Storage/Scan.pm @@ -127,6 +127,7 @@ __PACKAGE__->register_method({ my $data = []; foreach my $k (sort keys %$res) { + next if $k =~ m/NT_STATUS_/; push @$data, { share => $k, description => $res->{$k} }; }