1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* fix AMC-BASELINE tests => Smash (2012)

This commit is contained in:
Reinhard Pointner 2013-08-15 18:05:40 +00:00
parent 4934776fea
commit 4066124dff
2 changed files with 2 additions and 2 deletions

View File

@ -940,7 +940,7 @@ public class CmdlineOperations implements CmdlineInterface {
} }
// return first and only value // return first and only value
return probableMatches.size() <= 3 ? probableMatches : probableMatches.subList(0, 3); // trust that the correct match is in the Top 3 return probableMatches.size() <= 5 ? probableMatches : probableMatches.subList(0, 5); // trust that the correct match is in the Top 3
} }

View File

@ -86,7 +86,7 @@ public class TMDbClient implements MovieIdentificationService {
} }
result.add(new Movie(title, year, -1, (int) id)); result.add(new Movie(title, year, -1, (int) id));
} catch (Exception e) { } catch (Exception e) {
Logger.getLogger(TMDbClient.class.getName()).log(Level.WARNING, String.format("Ignore movie [%s]: %s", title, e.getMessage())); Logger.getLogger(TMDbClient.class.getName()).log(Level.FINE, String.format("Ignore movie [%s]: %s", title, e.getMessage()));
} }
} }
return result; return result;