websocketServer: fix flights JSON parse from HABHUB

pull/6/head
Michal Fratczak 2019-01-11 17:34:22 +01:00
rodzic f34f9423c6
commit 3b475acae2
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -93,9 +93,9 @@ std::map<std::string, habdec::habitat::HabitatFlight> ParseFlightsJson(const std
else
continue;
_p.baud_ = t.second.get<int>("baud");
_p.ascii_stops_ = t.second.get<int>("stop");
_p.frequency_ = t.second.get<int>("frequency");
_p.baud_ = t.second.get<float>("baud");
_p.ascii_stops_ = t.second.get<float>("stop");
_p.frequency_ = t.second.get<float>("frequency");
break; // use first of RTTY transmissions
}