aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTad Smith <tadsmith@hotmail.com>2022-12-29 12:08:59 -0600
committerTad Smith <tadsmith@hotmail.com>2022-12-29 12:08:59 -0600
commit5a86544aa9c87b860ff72ba7303736cb7d42b183 (patch)
treed028e830877c84cc2889780f7f73f04f87a4ff94
parent3c33c7fb64e88d58dd3a02de5b2941510a894a66 (diff)
Fix digital recorders.
-rw-r--r--trunk-recorder/source.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk-recorder/source.cc b/trunk-recorder/source.cc
index f0d18664..cf37d0fe 100644
--- a/trunk-recorder/source.cc
+++ b/trunk-recorder/source.cc
@@ -369,7 +369,7 @@ Recorder *Source::get_digital_recorder(Talkgroup *talkgroup, int priority, Call
if(talkgroup && (priority == -1)){
call->set_state(MONITORING);
- call->set_monitoring_state(NO_RECORDER);
+ call->set_monitoring_state(IGNORED_TG);
BOOST_LOG_TRIVIAL(info) << "[" << call->get_system()->get_short_name() << "]\t\033[0;34m" << call->get_call_num() << "C\033[0m\tTG: " << call->get_talkgroup_display() << "\tFreq: " << format_freq(call->get_freq()) << "\tNot recording talkgroup. Priority is -1.";
return NULL;
}