* fix for interface changes

This commit is contained in:
Reinhard Pointner 2014-09-15 20:41:51 +00:00
parent f772553b40
commit dd17ec1556
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ tvdb_updates.values().each{ update ->
if (votes >= 5 && rating >= 4) {
tryLogCatch{
if (imdbid =~ /tt(\d+)/) {
seriesNames += OMDb.getMovieDescriptor(imdbid.match(/tt(\d+)/) as int, Locale.ENGLISH).getName()
seriesNames += OMDb.getMovieDescriptor(new Movie(null, 0, imdbid.match(/tt(\d+)/) as int, -1), Locale.ENGLISH).getName()
}
}