Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.

Commit 0a71bb7

Browse files
committed
Fixed "Received command"-loglines
1 parent e1cd83b commit 0a71bb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function getHeardList($logLines) {
183183
$heardList = array();
184184
$dttxend = "";
185185
foreach ($logLines as $logLine) {
186-
if (strpos($logLine,"Data from") == false and strpos($logLine,"YSFV") == false and strpos($logLine,"blocked") == false and strpos($logLine,"Reload the Blacklist from File") == false and strpos($logLine,"Reload the Blacklist from File") == false and strpos($logLine,"YSF server status enquiry from") == false) {
186+
if (strpos($logLine,"Data from") == false and strpos($logLine,"Received command") == false and strpos($logLine,"blocked") == false and strpos($logLine,"Reload the Blacklist from File") == false and strpos($logLine,"Reload the Blacklist from File") == false and strpos($logLine,"YSF server status enquiry from") == false) {
187187
$duration = "transmitting";
188188
$timestamp = substr($logLine, 3, 19);
189189
$dttimestamp = new DateTime($timestamp);

version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?php
2-
define("VERSION", "20210331-1 (".getGitVersion().")");;
2+
define("VERSION", "20210331-2 (".getGitVersion().")");;
33
?>

0 commit comments

Comments
 (0)