From fb4d4dbcbcebde8c0cc48430799d679f981bc56a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nerijus=20Bend=C5=BEi=C5=ABnas?= Date: Wed, 22 Jan 2025 16:11:23 +0200 Subject: [PATCH] fix: update satellites in TLE update network thread too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just noticed updated does not take effect (GUI update etc). Signed-off-by: Nerijus Bendžiūnas --- src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.c b/src/main.c index 1208991..b68229f 100644 --- a/src/main.c +++ b/src/main.c @@ -559,6 +559,9 @@ static gpointer update_tle_thread(gpointer data) tle_upd_running = TRUE; tle_update_from_network(TRUE, NULL, NULL, NULL); + + mod_mgr_reload_sats(); + tle_upd_running = FALSE; return NULL;