From acbd1080d5ea854f7cd0b9b7806c62c004fe4299 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 10 Sep 2018 10:12:42 -0400 Subject: [PATCH] Fixed issue with APRSIS passcode validity check --- APRSISClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/APRSISClient.cpp b/APRSISClient.cpp index d0b587e..4287fae 100644 --- a/APRSISClient.cpp +++ b/APRSISClient.cpp @@ -197,7 +197,7 @@ void APRSISClient::enqueueSpot(QString theircall, QString grid, QString comment) } void APRSISClient::enqueueThirdParty(QString theircall, QString payload){ - if(m_localPasscode != hashCallsign(m_localCall)){ + if(!isPasscodeValid()){ return; }