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

Use Locale.US as default locale for TheMovieDB requests (because US is likely cached due to language preferences, while ENGLISH may not be)

This commit is contained in:
Reinhard Pointner 2017-06-18 20:30:56 +08:00
parent 49d744319e
commit 7fcbc4d614

View File

@ -269,7 +269,7 @@ public abstract class ScriptShellBaseClass extends Script {
// 3. run full-fledged movie detection
try {
List<Movie> options = MediaDetection.detectMovie(file, WebServices.TheMovieDB, Locale.ENGLISH, strict);
List<Movie> options = MediaDetection.detectMovie(file, WebServices.TheMovieDB, Locale.US, strict);
if (options.size() > 0) {
return options.get(0);
}