From cc3151ef6fc9057b7b839c71e9bdd54e0fc87222 Mon Sep 17 00:00:00 2001 From: Roland Rossgotterer Date: Thu, 19 Sep 2019 17:34:41 +0200 Subject: [PATCH] Fix TransceiverDto::toJson --- src/blackcore/afv/dto.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blackcore/afv/dto.h b/src/blackcore/afv/dto.h index 0e2a7a1f1..54f8f04d3 100644 --- a/src/blackcore/afv/dto.h +++ b/src/blackcore/afv/dto.h @@ -119,7 +119,8 @@ namespace BlackCore json["Frequency"] = static_cast(frequency); json["LatDeg"] = LatDeg; json["LonDeg"] = LonDeg; - json["AltMslM"] = HeightMslM; + json["HeightMslM"] = HeightMslM; + json["HeightAglM"] = HeightAglM; return json; }