* disable search-by-name completely in strict-mode

This commit is contained in:
Reinhard Pointner 2014-04-05 11:42:11 +00:00
parent e0a9a7135a
commit 9cbef475c6
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ public class CmdlineOperations implements CmdlineInterface {
}
for (SubtitleProvider service : getSubtitleProviders()) {
if (remainingVideos.isEmpty() || (databaseFilter != null && !databaseFilter.matcher(service.getName()).matches())) {
if (strict || remainingVideos.isEmpty() || (databaseFilter != null && !databaseFilter.matcher(service.getName()).matches())) {
continue;
}