Fix TransceiverDto::toJson

This commit is contained in:
Roland Rossgotterer
2019-09-19 17:34:41 +02:00
committed by Mat Sutcliffe
parent 44146353a6
commit cc3151ef6f

View File

@@ -119,7 +119,8 @@ namespace BlackCore
json["Frequency"] = static_cast<int>(frequency);
json["LatDeg"] = LatDeg;
json["LonDeg"] = LonDeg;
json["AltMslM"] = HeightMslM;
json["HeightMslM"] = HeightMslM;
json["HeightAglM"] = HeightAglM;
return json;
}