Fixed APRS passcode warning

This commit is contained in:
Jordan Sherer 2018-10-17 14:31:23 -04:00
parent 23a554220b
commit 80d798d7e3

View File

@ -5310,7 +5310,7 @@ void MainWindow::createMessage(QString const& text){
return;
}
if(text.contains(" APRS:") && !m_aprsClient->isPasscodeValid()){
if(text.contains("APRS:") && !m_aprsClient->isPasscodeValid()){
MessageBox::warning_message(this, tr ("Please ensure a valid APRS passcode is set in the settings when sending an APRS packet."));
return;
}