From 10f17174348a333648468cd26063b9604a2858a6 Mon Sep 17 00:00:00 2001 From: Alexander Kozlovsky Date: Mon, 31 Jan 2022 07:49:19 +0100 Subject: [PATCH] Fix PopularityComponent start checks --- src/tribler-core/tribler_core/start_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tribler-core/tribler_core/start_core.py b/src/tribler-core/tribler_core/start_core.py index 168fed60ad6..6215e37bf07 100644 --- a/src/tribler-core/tribler_core/start_core.py +++ b/src/tribler-core/tribler_core/start_core.py @@ -78,7 +78,7 @@ def components_gen(config: TriblerConfig): if config.torrent_checking.enabled: yield TorrentCheckerComponent() - if config.ipv8.enabled and config.popularity_community.enabled: + if config.ipv8.enabled and config.torrent_checking.enabled and config.popularity_community.enabled: yield PopularityComponent() if config.ipv8.enabled and config.tunnel_community.enabled: yield TunnelsComponent()