Unverified Commit 13ad573b authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

dbris-m: Do not print station name with --(raw-)json

parent a76b0e41
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -126,7 +126,9 @@ else {
	my $found;
	for my $result ( $status->results ) {
		if ( defined $result->eva ) {
			if ( lc( $result->name ) ne lc( $opt{station} ) ) {
			if ( lc( $result->name ) ne lc( $opt{station} )
				and not( $json_output or $raw_json_output ) )
			{
				say $result->name;
			}
			$opt{station} = $result;