From 36395cf942feec31a5a1ac0b51ce281fbf50a5a9 Mon Sep 17 00:00:00 2001 From: Chipster Date: Tue, 9 Jan 2024 10:00:04 -0600 Subject: [PATCH] This PR/commit fixes #785, where POCSAG messages are now properly displayed on Nextion devices --- POCSAGControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/POCSAGControl.cpp b/POCSAGControl.cpp index 56955109..05682716 100644 --- a/POCSAGControl.cpp +++ b/POCSAGControl.cpp @@ -234,7 +234,7 @@ bool CPOCSAGControl::readNetwork() output->m_display = rubric + out + "\""; break; default: - output->m_display = "\"" + output->m_text + "\""; + output->m_display = output->m_text; break; } LogDebug("Message to %07u, func Alphanumeric: %s", output->m_ric, output->m_display.c_str());