2 Commitit 206612a8c6 ... e461d8cae7

Tekijä SHA1 Viesti Päivämäärä
  Jan Krüger e461d8cae7 plugins/graph: .gitgraph: stop after first parse error 3 kuukautta sitten
  Jan Krüger 206612a8c6 plugins/graph: .gitgraph: stop after first parse error 3 kuukautta sitten
1 muutettua tiedostoa jossa 1 lisäystä ja 3 poistoa
  1. 1 3
      plugins/graph.pm

+ 1 - 3
plugins/graph.pm

@@ -121,9 +121,7 @@ my $gitgraph = sub {
 		"$full(HERE:)$part";
 	};
 	my $fail = sub {
-		unless $skip_errors {
-			BotIrc::send_noise(".gitgraph parse error: ". shift);
-		}
+		BotIrc::send_noise(".gitgraph parse error: ". shift) unless $skip_errors;
 		$skip_errors = 1;
 		undef;
 	};