mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-09-10 15:14:36 +08:00
fix minor bug
This commit is contained in:
parent
73838407e6
commit
00ba767ee7
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.0.2-develop7
|
||||
4.0.2-develop8
|
||||
|
|
|
@ -207,7 +207,7 @@ class ShareLimits:
|
|||
if (
|
||||
check_max_ratio or check_max_seeding_time or check_limit_upload_speed or share_limits_not_yet_tagged
|
||||
) and hash_not_prev_checked:
|
||||
if not is_tag_in_torrent(MIN_SEEDING_TIME_TAG, torrent.tags) or not is_tag_in_torrent(
|
||||
if not is_tag_in_torrent(MIN_SEEDING_TIME_TAG, torrent.tags) and not is_tag_in_torrent(
|
||||
MIN_NUM_SEEDS_TAG, torrent.tags
|
||||
):
|
||||
logger.print_line(logger.insert_space(f"Torrent Name: {t_name}", 3), self.config.loglevel)
|
||||
|
|
Loading…
Add table
Reference in a new issue