Remove unnecessary condition

This will never be NULL and thus causes an error in ESP-IDF
pull/810/head
Nicklas Börjesson 2023-08-09 23:38:39 +02:00 zatwierdzone przez GitHub
rodzic 86724197ec
commit ebfe7972fc
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -24,7 +24,7 @@ int16_t APRSClient::begin(char sym, char* callsign, uint8_t ssid, bool alt) {
table = '/';
}
if((!src) && (this->phyLayer != nullptr)) {
if(this->phyLayer != nullptr) {
return(RADIOLIB_ERR_INVALID_CALLSIGN);
}