Is it possible to filter scenes by more than 1 URL?
for example, scenes that include ‘url 1’ and ‘url 2’.
We can’t add the same filter multiple types at the moment.
Thanx for the reply ![]()
As an interim solution you can use the regex match filter to search for multiple URLs… e.g.
https://.*?(wowgirls.com|metart.com|femjoy.com).*
This would find all scenes with a URL containing:
The trick is to separate each domain with | inside the parentheses.
The question was about finding scenes that all match multiple URLs. So AND not OR operator. And as far as I know the only way to do what with regex is lookaheads which Golang doesn’t support.
You’re right, the regex would only facilitate OR queries
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.