Fixed issue with changing frequency in response to directed allcalls
This commit is contained in:
parent
94d7b94f56
commit
08357c4b11
@ -8742,8 +8742,11 @@ void MainWindow::processCommandActivity() {
|
||||
continue;
|
||||
}
|
||||
|
||||
// queue the reply here to be sent when a free interval is available
|
||||
enqueueMessage(PriorityNormal, reply, d.freq, nullptr);
|
||||
// queue the reply here to be sent when a free interval is available on the frequency that was sent
|
||||
// unless, this is an allcall, to which we should be responding on a clear frequency offset
|
||||
// we always want to make sure that the directed cache has been updated at this point so we have the
|
||||
// most information available to make a frequency selection.
|
||||
enqueueMessage(PriorityNormal, reply, isAllCall ? -1 : d.freq, nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user