Added P25 to TG-Lookup
Configuration same like YSF...
This commit is contained in:
parent
e6f2368322
commit
226a87a55e
2 changed files with 5 additions and 2 deletions
|
@ -140,7 +140,10 @@ function resolveTarget(mode, timeslot, target) {
|
|||
tmpval = talkgroups.filter(function (tg) { return tg[0] == mode});
|
||||
switch (mode) {
|
||||
case "DMR":
|
||||
tmpval = talkgroups.filter(function (tg) { return tg[1] == timeslot});
|
||||
tmpval = tmpval.filter(function (tg) { return tg[1] == timeslot});
|
||||
retval = tmpval.filter(function (tg) { return tg[2] == target.substring(3, target.length).trim()});
|
||||
break;
|
||||
case "P25":
|
||||
retval = tmpval.filter(function (tg) { return tg[2] == target.substring(3, target.length).trim()});
|
||||
break;
|
||||
case "YSF":
|
||||
|
|
|
@ -1 +1 @@
|
|||
var dashboard_version = "2021-02-17 20:58:46";
|
||||
var dashboard_version = "2021-02-18 17:16:01";
|
||||
|
|
Loading…
Reference in a new issue