Skip to content

Commit

Permalink
Merge pull request #118 from thovoigt/master
Browse files Browse the repository at this point in the history
Added detection of timed out DMR calls in getHeardList()
  • Loading branch information
AndyTaylorTweet committed Oct 20, 2020
2 parents 7cf66ae + dca3230 commit cf36796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmdvmhost/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ function getHeardList($logLines) {
if (array_key_exists(3,$lineTokens)) {
$loss = $lineTokens[3];
}
if (strpos($logLine,"RF user has timed out")) {
if (strpos($logLine,"RF user has timed out") || strpos($logLine,"watchdog has expired")) {
$duration = "TOut";
$ber = "??%";
}
Expand Down

0 comments on commit cf36796

Please sign in to comment.