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

Commit

Permalink
Fixed problem with linked to MMDVM
Browse files Browse the repository at this point in the history
  • Loading branch information
dg9vh committed Jun 4, 2018
1 parent 4ba4ba2 commit e989455
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions include/functions.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -762,6 +762,9 @@ function getActualLink($logLines, $mode) {
} }
if (strpos($logLine,"Linked to")) { if (strpos($logLine,"Linked to")) {
$to = substr($logLine, 37, 16); $to = substr($logLine, 37, 16);
if ($to == "MMDVM" )
continue;

} }
if ($to !== "") { if ($to !== "") {
$fp = fopen('/tmp/YSFState.txt', 'w'); $fp = fopen('/tmp/YSFState.txt', 'w');
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php <?php
define("VERSION", "20180404-3 (".getGitVersion().")"); define("VERSION", "20180604-1 (".getGitVersion().")");
?> ?>

0 comments on commit e989455

Please sign in to comment.