* don't include extended info in {info} binding (to reduce wasteful API requests)

This commit is contained in:
Reinhard Pointner 2014-06-06 04:07:53 +00:00
parent 2f0fada72a
commit 74d7a800e8
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ public class MediaBindingBean {
if (infoObject instanceof Episode)
metaInfo = WebServices.TheTVDB.getSeriesInfoByName(((Episode) infoObject).getSeriesName(), Locale.ENGLISH);
if (infoObject instanceof Movie)
metaInfo = WebServices.TheMovieDB.getMovieInfo(getMovie(), Locale.ENGLISH, true);
metaInfo = WebServices.TheMovieDB.getMovieInfo(getMovie(), Locale.ENGLISH, false);
} catch (Exception e) {
throw new RuntimeException("Failed to retrieve metadata: " + infoObject, e);
}