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

Commit

Permalink
Fixed "Received command"-loglines
Browse files Browse the repository at this point in the history
  • Loading branch information
dg9vh committed Mar 31, 2021
1 parent e1cd83b commit 0a71bb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ function getHeardList($logLines) {
$heardList = array();
$dttxend = "";
foreach ($logLines as $logLine) {
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) {
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) {
$duration = "transmitting";
$timestamp = substr($logLine, 3, 19);
$dttimestamp = new DateTime($timestamp);
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
define("VERSION", "20210331-1 (".getGitVersion().")");;
define("VERSION", "20210331-2 (".getGitVersion().")");;
?>

0 comments on commit 0a71bb7

Please sign in to comment.