From ec0ff4256b2dc7e7df828c39399e68b370e96dc0 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Sat, 19 Jul 2014 08:40:55 +0000 Subject: [PATCH] * use MultiValueInputDialog separator char --- source/net/filebot/ui/rename/EpisodeListMatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/ui/rename/EpisodeListMatcher.java b/source/net/filebot/ui/rename/EpisodeListMatcher.java index a4a83975..1f475c74 100644 --- a/source/net/filebot/ui/rename/EpisodeListMatcher.java +++ b/source/net/filebot/ui/rename/EpisodeListMatcher.java @@ -276,7 +276,7 @@ class EpisodeListMatcher implements AutoCompleteMatcher { if (episodes.isEmpty()) { List detectedSeriesNames = detectSeriesNames(files, useSeriesIndex, useAnimeIndex, locale); String parentPathHint = normalizePathSeparators(getRelativePathTail(files.get(0).getParentFile(), 2).getPath()); - String suggestion = detectedSeriesNames.size() > 0 ? join(detectedSeriesNames, ", ") : parentPathHint; + String suggestion = detectedSeriesNames.size() > 0 ? join(detectedSeriesNames, "; ") : parentPathHint; List input; synchronized (inputMemory) {