diff --git a/partners_api/maxim_api.cpp b/partners_api/maxim_api.cpp index dfc046db43..dc9c426d13 100644 --- a/partners_api/maxim_api.cpp +++ b/partners_api/maxim_api.cpp @@ -129,7 +129,7 @@ void MakeFromJson(std::string const & src, std::vector & products return; auto const price = json_object_get(root.get(), "Price"); - if (price == nullptr) + if (price == nullptr || json_is_null(price)) return; double p = 0.0; diff --git a/partners_api/partners_api_tests/booking_tests.cpp b/partners_api/partners_api_tests/booking_tests.cpp index 72c10f39aa..1bf8bfc7dc 100644 --- a/partners_api/partners_api_tests/booking_tests.cpp +++ b/partners_api/partners_api_tests/booking_tests.cpp @@ -65,7 +65,8 @@ UNIT_CLASS_TEST(AsyncGuiThreadBooking, Booking_GetBlockAvailability) auto price = BlockInfo::kIncorrectPrice; string currency; string hotelId; - api.GetBlockAvailability(std::move(params), [&hotelId, &price, ¤cy](std::string const & id, + auto copy = params; + api.GetBlockAvailability(std::move(copy), [&hotelId, &price, ¤cy](std::string const & id, Blocks const & blocks) { hotelId = id; @@ -88,7 +89,8 @@ UNIT_CLASS_TEST(AsyncGuiThreadBooking, Booking_GetBlockAvailability) double price = std::numeric_limits::max(); string currency; string hotelId; - api.GetBlockAvailability(std::move(params), [&hotelId, &price, ¤cy](std::string const & id, + auto copy = params; + api.GetBlockAvailability(std::move(copy), [&hotelId, &price, ¤cy](std::string const & id, Blocks const & blocks) { hotelId = id;