Skip to content
Update Expressions authored by l3uddz's avatar l3uddz
......@@ -74,3 +74,16 @@ This will most of the time be empty, however, it is useful for the scenario's wh
It is here to help the cases when an SD, 720 and 1080 release is uploaded to a tracker within a short period of time (usually seconds).
In the case of the example above, we are explicitly saying, if the release name does not contain 1080, sleep for 15 seconds. This may seem counter-productive, and will not be for everybody, however, for me, i prefer not having 3 downloads (of different quality) for the same tv episode.
## Important
Please note, `ignores` and `accepts` are not an ALL must match scenario.
For the cases where you want specific criteria based on the tracker, you should use the `&&` expression operator, e.g.:
```yaml
ignores:
- TrackerName == "IPT" && TorrentName contains "COMPLETE"
```
The above ignore will only apply for the IPT tracker.
\ No newline at end of file