* bit more broad series-name query detection
This commit is contained in:
parent
fececd92ee
commit
ec83540afa
|
@ -347,7 +347,10 @@ public class MediaDetection {
|
|||
}
|
||||
|
||||
try {
|
||||
matches = stripReleaseInfo(matches, true);
|
||||
Collection<String> priorityMatchSet = new LinkedHashSet<String>();
|
||||
priorityMatchSet.addAll(stripReleaseInfo(matches, true));
|
||||
priorityMatchSet.addAll(stripReleaseInfo(matches, false));
|
||||
matches = priorityMatchSet;
|
||||
} catch (Exception e) {
|
||||
Logger.getLogger(MediaDetection.class.getClass().getName()).log(Level.WARNING, "Failed to clean matches: " + e.getMessage(), e);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue