aboutsummaryrefslogtreecommitdiff
path: root/shell/shell.c
diff options
context:
space:
mode:
authorrezso <rezso@rezso.net>2023-10-27 20:47:01 +0200
committerGitHub <noreply@github.com>2023-10-27 20:47:01 +0200
commit0f5dea06fa62062c7e98b36945a63aae7835a80a (patch)
treeb821e72d61a233b0f9ba6cd854688c0f57a92558 /shell/shell.c
parent01c8928ef55bc2f11bb76401f89c34e0539e6879 (diff)
Fix build without libsoup
Diffstat (limited to 'shell/shell.c')
-rw-r--r--shell/shell.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/shell.c b/shell/shell.c
index 0d08161f..7c7c88a7 100644
--- a/shell/shell.c
+++ b/shell/shell.c
@@ -815,7 +815,9 @@ void shell_init(GSList * modules)
shell->tree->modules = modules ? modules : modules_load_all();
+#ifdef HAS_LIBSOUP
check_for_updates();
+#endif
g_slist_foreach(shell->tree->modules, shell_add_modules_to_gui, shell->tree);
gtk_tree_view_expand_all(GTK_TREE_VIEW(shell->tree->view));