You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently using whatdaybob/sonarr_youtubedl:dev from docker, I have an issue with the title regex in the configuration. I checked, and the same issue is present in main.
I would like to have a regex that can contain an episode number, such as this: Ep. \\d+ | \g<1>. However, the code currently transforms the regex to uppercase, which changes the meaning of the regex: \d is a digit, whereas \D is a non-digit.
The text was updated successfully, but these errors were encountered:
Currently using
whatdaybob/sonarr_youtubedl:dev
from docker, I have an issue with the title regex in the configuration. I checked, and the same issue is present inmain
.I would like to have a regex that can contain an episode number, such as this:
Ep. \\d+ | \g<1>
. However, the code currently transforms the regex to uppercase, which changes the meaning of the regex:\d
is a digit, whereas\D
is a non-digit.The text was updated successfully, but these errors were encountered: