This commit is contained in:
Eelco Dolstra
2009-03-18 18:50:42 +00:00
parent 9e4b029285
commit ba7b94a852
3 changed files with 5 additions and 3 deletions

View File

@ -125,8 +125,8 @@ sub download : Chained('build') PathPart {
}
sub contents : Chained('build') PathPart {
my ($self, $c, $productnr, @path) = @_;
sub contents : Chained('build') PathPart Args(1) {
my ($self, $c, $productnr) = @_;
my $product = $c->stash->{build}->buildproducts->find({productnr => $productnr});
notFound($c, "Build doesn't have a product $productnr.") if !defined $product;