Skip to content

Commit

Permalink
#2068 P25 traffic channel manager ignores traffic channel requests if…
Browse files Browse the repository at this point in the history
… the frequency value is zero (#2069)

Co-authored-by: Dennis Sheirer <dsheirer@github.com>
  • Loading branch information
DSheirer and Dennis Sheirer authored Oct 31, 2024
1 parent 02e2362 commit 7509245
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ public boolean processP1TrafficCallEnd(long frequency, long timestamp, String co
private void requestTrafficChannelStart(Channel trafficChannel, APCO25Channel apco25Channel,
IdentifierCollection identifierCollection, long timestamp)
{
if(getInterModuleEventBus() != null)
if(apco25Channel != null && apco25Channel.getDownlinkFrequency() > 0 && getInterModuleEventBus() != null)
{
SourceConfigTuner sourceConfig = new SourceConfigTuner();
sourceConfig.setFrequency(apco25Channel.getDownlinkFrequency());
Expand Down

0 comments on commit 7509245

Please sign in to comment.