From 6df692e6bac2ccfe78a53678ced16b7a18930805 Mon Sep 17 00:00:00 2001 From: Dave Behnke <916775+dbehnke@users.noreply.github.com> Date: Sun, 4 Jan 2026 18:12:03 -0500 Subject: [PATCH] fix: compilation error using GetCallsign() instead of GetCS() --- reflector/DMRMMDVMProtocol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflector/DMRMMDVMProtocol.cpp b/reflector/DMRMMDVMProtocol.cpp index 7b8dc8b..7de1cf0 100644 --- a/reflector/DMRMMDVMProtocol.cpp +++ b/reflector/DMRMMDVMProtocol.cpp @@ -310,7 +310,7 @@ void CDmrmmdvmProtocol::OnDvHeaderPacketIn(std::unique_ptr &Hea // might not set RPT2 correctly (e.g. just "N8ZA" or "DMRGW"). uint32_t tg = 0; try { - std::string destStr = Header->GetUrCallsign().GetCallsign(); + std::string destStr = Header->GetUrCallsign().GetCS(); // Remove spaces destStr.erase(std::remove(destStr.begin(), destStr.end(), ' '), destStr.end()); if (!destStr.empty() && std::all_of(destStr.begin(), destStr.end(), ::isdigit)) {