1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
This commit is contained in:
Reinhard Pointner 2016-03-17 18:27:22 +00:00
parent b243a6df1a
commit 5bfa2692fd

View File

@ -315,7 +315,7 @@ public class TMDbClient implements MovieIdentificationService {
file.append(path.lastIndexOf('?') < 0 ? '?' : '&'); file.append(path.lastIndexOf('?') < 0 ? '?' : '&');
if (locale.getLanguage().length() > 0) { if (locale.getLanguage().length() > 0) {
file.append("language=").append(getLanguageCode(locale)); file.append("language=").append(getLanguageCode(locale)).append('&');
} }
file.append("api_key=").append(apikey); file.append("api_key=").append(apikey);