From 71e30553ecf6460ed883e4060ba6c6bd254b1731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz> Date: Thu, 10 Oct 2024 00:35:32 +0200 Subject: [PATCH] Bugfix --- .gitlab-ci.yml | 2 +- lib/CF2022/Controller/Orders.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7eade46..f563e0e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ image: docker:latest variables: DOCKER_TLS_CERTDIR: "/certs" - IMAGE_VER: 0.21.0 + IMAGE_VER: 0.21.1 services: - docker:dind diff --git a/lib/CF2022/Controller/Orders.pm b/lib/CF2022/Controller/Orders.pm index fbcb1eb..c7e3ef8 100644 --- a/lib/CF2022/Controller/Orders.pm +++ b/lib/CF2022/Controller/Orders.pm @@ -94,7 +94,7 @@ sub create ($c ) { PRODUCT: foreach my $product ( @{ $args->{products} } ) { - return $c->error(400, "Běž žebrat jinam, Pando") if $product->{price} < $c->config->{min_fee}; + return $c->error(400, "Běž žebrat jinam, Pando") if $product->{price} && $product->{price} < $c->config->{min_fee}; $product->{id} = $c->mapped_product_id($product->{id}); -- GitLab