Skip to content

Commit

Permalink
Fix PopularityComponent start checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlovsky committed Jan 31, 2022
1 parent 285f749 commit d1b71c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tribler-core/tribler_core/start_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit d1b71c9

Please sign in to comment.