[yandex taxi] price fix

This commit is contained in:
Arsentiy Milchakov 2018-02-19 15:10:39 +03:00 committed by Roman Kuznetsov
parent 9d45647828
commit af75dd024e

View file

@ -148,7 +148,7 @@ void MakeFromJson(std::string const & src, std::vector<taxi::Product> & products
{
taxi::Product product;
double time = 0.0;
int64_t price = 0;
double price = 0.0;
auto const item = json_array_get(productsArray, i);
FromJSONObjectOptionalField(item, "waiting_time", time);