From a6708bf3691d2081333492e2fd58eac92b0a481a Mon Sep 17 00:00:00 2001 From: int2001 Date: Sun, 16 Mar 2025 12:08:26 +0000 Subject: [PATCH] fixed ambiguous id in view which causes that minelevation never worked --- application/views/satellite/pass.php | 2 +- src/predict/Predict.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/application/views/satellite/pass.php b/application/views/satellite/pass.php index d851c24d8..adf718256 100644 --- a/application/views/satellite/pass.php +++ b/application/views/satellite/pass.php @@ -8,7 +8,7 @@

Your station

- +
diff --git a/src/predict/Predict.php b/src/predict/Predict.php index 1c8713984..29fd4c1e7 100644 --- a/src/predict/Predict.php +++ b/src/predict/Predict.php @@ -807,6 +807,7 @@ class Predict if ($detail->vis != Predict::SAT_VIS_VISIBLE) { continue; } + if ($detail->el < $this->minEle) { continue; }