* make sure that release groups with @ in the name work as expected (regex \p{Punct} includes @ so it had been removed and subsequently couldn't be matched)
This commit is contained in:
parent
165e0e5681
commit
6fe93ab300
|
@ -489,7 +489,7 @@ public class MediaBindingBean {
|
|||
if (filenames[i] == null)
|
||||
continue;
|
||||
|
||||
filenames[i] = releaseInfo.clean(normalizePunctuation(normalizeSpace(filenames[i], " ")), nonGroupPattern, releaseInfo.getVideoSourcePattern(), releaseInfo.getVideoFormatPattern(true), releaseInfo.getResolutionPattern());
|
||||
filenames[i] = releaseInfo.clean(filenames[i], nonGroupPattern, releaseInfo.getVideoSourcePattern(), releaseInfo.getVideoFormatPattern(true), releaseInfo.getResolutionPattern());
|
||||
}
|
||||
|
||||
// look for release group names in media file and it's parent folder
|
||||
|
|
Loading…
Reference in New Issue