diff --git a/DMRLookup.cpp b/DMRLookup.cpp index 12bf0ae..e9de15b 100644 --- a/DMRLookup.cpp +++ b/DMRLookup.cpp @@ -72,6 +72,9 @@ std::string CDMRLookup::find(unsigned int id) const { std::string callsign; + if (id == 0xFFFFFFU) + return std::string("ALL"); + try { callsign = m_table.at(id); } catch (...) {