From cf35a74f94bfe0451dfe9498e0a07ce20ae098ed Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Thu, 11 Sep 2014 18:35:40 +0200 Subject: [PATCH] PriceSource: 0,0000 Preise nicht als best_price erlauben MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Auch wenn es im Einzelfall valide Preise sein können, sollte das Standardverhalten keine Umsonstpreise vorschlagen. --- SL/PriceSource.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/PriceSource.pm b/SL/PriceSource.pm index 5237003fe..9f7c11090 100644 --- a/SL/PriceSource.pm +++ b/SL/PriceSource.pm @@ -35,7 +35,7 @@ sub available_prices { } sub best_price { - min_by { $_->price } map { $_->best_price } $_[0]->all_price_sources; + min_by { $_->price } grep { $_->price > 0 } map { $_->best_price } $_[0]->all_price_sources; } sub empty_price { -- 2.20.1