mirror of
https://github.com/g4klx/DMRGateway.git
synced 2025-12-06 05:32:01 +01:00
Wrong test being used, fixed.
This commit is contained in:
parent
0446acc6c4
commit
6f0c543ab0
|
|
@ -49,5 +49,5 @@ bool CPassAllPC::process(CDMRData& data)
|
|||
FLCO flco = data.getFLCO();
|
||||
unsigned int slotNo = data.getSlotNo();
|
||||
|
||||
return flco == FLCO_USER_USER || slotNo == m_slot;
|
||||
return flco == FLCO_USER_USER && slotNo == m_slot;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,5 +49,5 @@ bool CPassAllTG::process(CDMRData& data)
|
|||
FLCO flco = data.getFLCO();
|
||||
unsigned int slotNo = data.getSlotNo();
|
||||
|
||||
return flco == FLCO_GROUP || slotNo == m_slot;
|
||||
return flco == FLCO_GROUP && slotNo == m_slot;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue