forked from lix-project/hydra
Get rid of a warning in the HipChat plugin
This commit is contained in:
parent
b47d9814e3
commit
6574d125c7
|
@ -9,7 +9,7 @@ sub buildFinished {
|
||||||
my ($self, $build, $dependents) = @_;
|
my ($self, $build, $dependents) = @_;
|
||||||
|
|
||||||
my $cfg = $self->{config}->{hipchat};
|
my $cfg = $self->{config}->{hipchat};
|
||||||
my @config = ref $cfg eq "ARRAY" ? @$cfg : ($cfg);
|
my @config = defined $cfg ? ref $cfg eq "ARRAY" ? @$cfg : ($cfg) : ();
|
||||||
|
|
||||||
my $baseurl = $self->{config}->{'base_uri'} || "http://localhost:3000";
|
my $baseurl = $self->{config}->{'base_uri'} || "http://localhost:3000";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue