Skip to content

Commit

Permalink
Merge pull request #6746 from kozlovsky/fix/popularity_component_star…
Browse files Browse the repository at this point in the history
…t_checks

Fixes #6745: Missed dependency: PopularityComponent requires TorrentCheckerComponent to be active
  • Loading branch information
kozlovsky authored Jan 31, 2022
2 parents c83950f + 10f1717 commit 7c8b5d7
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 7c8b5d7

Please sign in to comment.