-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v2自动删种插件 #597
Comments
查询种子torrents = [] |
如果可以的话 这里设计成,是and逻辑 |是or逻辑么? |
用ai写的凑合着看 标题and_tags = [] if self._labels: if self._mponly: 查询种子torrents = [] 使用 AND 逻辑的查询if and_tags: 使用 OR 逻辑的查询if or_tags: 去重处理torrents = list({torrent.hash: torrent for torrent in torrents}.values()) |
标签这一项如果你只填写一个标签没问题,但是用逗号分隔多个标签的话它默认是这个种子必须有这些标签,而不是只要这个种子含有这个标签。逻辑是and而不是or的意思。
The text was updated successfully, but these errors were encountered: