From 23aeb91026f95af2b4cacd8d2b75a8d6061246d8 Mon Sep 17 00:00:00 2001 From: Waldek Date: Wed, 2 Jun 2021 15:32:14 +0200 Subject: [PATCH] fixed problem display Callsign --- monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor.py b/monitor.py index f38f734..630fd6e 100644 --- a/monitor.py +++ b/monitor.py @@ -659,7 +659,7 @@ def rts_update(p): CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['BGCOLOR'] = bgcolor CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['TYPE'] = callType CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['SUB'] = '{} ({})'.format(alias_short(sourceSub, subscriber_ids), sourceSub) - CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['SUB'] = '{}'.format(alias_call(sourceSub, subscriber_ids)) + CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['CALL'] = '{}'.format(alias_call(sourceSub, subscriber_ids)) CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['SRC'] = peer CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['DEST'] = 'TG {}    {}'.format(destination,alias_tgid(destination,talkgroup_ids)) CTABLE['MASTERS'][system]['PEERS'][peer][timeSlot]['TG'] = 'TG {}'.format(destination)