From 7d1bb3cd72af63e53ea4c29c20d7e786d4d936d0 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Sat, 13 Jun 2020 08:38:49 -0700 Subject: [PATCH] more selective about when to do a messsage update --- QnetGateway.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QnetGateway.cpp b/QnetGateway.cpp index 302585b..3e3e321 100644 --- a/QnetGateway.cpp +++ b/QnetGateway.cpp @@ -1105,7 +1105,7 @@ void CQnetGateway::ProcessIncomingSD(const SDSVT &dsvt) sd.im += 3; if (sd.im >= 20) { sd.message[20] = '\0'; - if (showLastHeard && (i < 3)) { + if (showLastHeard && (i < 3) && memcmp(toRptr[i].saved_hdr.hdr.sfx, "RPTR", 4) && memcmp(sd.message, "VIA SMARTGP", 11)) { char call[CALL_SIZE+1]; memcpy(call, toRptr[i].saved_hdr.hdr.mycall, CALL_SIZE); call[CALL_SIZE] = '\0';