* startdate not yet supported

This commit is contained in:
Reinhard Pointner 2011-10-10 16:40:06 +00:00
parent 8171d8beb4
commit 0939ac762c
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public class SerienjunkiesClient extends AbstractEpisodeListProvider {
String title = (String) obj.get("german"); String title = (String) obj.get("german");
Date airdate = Date.parse((String) ((JSONObject) obj.get("airdates")).get("premiere"), "yyyy-MM-dd"); Date airdate = Date.parse((String) ((JSONObject) obj.get("airdates")).get("premiere"), "yyyy-MM-dd");
episodes.add(new Episode(series.getName(), season, episode, title, i + 1, null, airdate)); episodes.add(new Episode(series.getName(), null, season, episode, title, i + 1, null, airdate));
} }
// populate cache // populate cache