From 565abb713a1eb762349523fb961f1c5865e48fc8 Mon Sep 17 00:00:00 2001 From: Kim Huebel Date: Sun, 25 Apr 2021 11:01:42 +0100 Subject: [PATCH] fixed voice transmission lost --- html/js/functions.js | 2 +- html/js/version.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/js/functions.js b/html/js/functions.js index 884f321..d7923c6 100644 --- a/html/js/functions.js +++ b/html/js/functions.js @@ -613,7 +613,7 @@ function getLastHeard(document, event) { ts2timestamp = getRawTimestamp(line); } } - if (line.indexOf("network watchdog") > 0 || line.indexOf("end of voice transmission") > 0 || line.indexOf("end of transmission") > 0) { + if (line.indexOf("network watchdog") > 0 || line.indexOf("end of voice transmission") > 0 || line.indexOf("end of transmission") > 0 || line.indexOf("voice transmission lost") > 0 ) { if (getMode(line) == "DMR Slot 1" ) { ts1TXing = null; } else { diff --git a/html/js/version.js b/html/js/version.js index c7738c1..6b39f72 100644 --- a/html/js/version.js +++ b/html/js/version.js @@ -1 +1 @@ -var dashboard_version = "2021-04-23 22:25:46"; +var dashboard_version = "2021-04-25 11:01:41";