From 6fe93ab300c2b9bc3e03ce5355c158d24d532138 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Sat, 27 Jun 2015 16:56:17 +0000 Subject: [PATCH] * 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) --- source/net/filebot/format/MediaBindingBean.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/format/MediaBindingBean.java b/source/net/filebot/format/MediaBindingBean.java index 543fbad9..c709a043 100644 --- a/source/net/filebot/format/MediaBindingBean.java +++ b/source/net/filebot/format/MediaBindingBean.java @@ -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