diff --git a/source/net/sourceforge/filebot/Settings.properties b/source/net/sourceforge/filebot/Settings.properties index cacdd593..83f3044a 100644 --- a/source/net/sourceforge/filebot/Settings.properties +++ b/source/net/sourceforge/filebot/Settings.properties @@ -1,6 +1,6 @@ # application settings application.name: FileBot -application.version: 1.99 +application.version: 2.0 thetvdb.apikey: 58B4AA94C59AD656 themoviedb.apikey: 5a6edae568130bf10617b6d45be99f13 diff --git a/source/net/sourceforge/filebot/WebServices.java b/source/net/sourceforge/filebot/WebServices.java index 07e8a946..3ccd022f 100644 --- a/source/net/sourceforge/filebot/WebServices.java +++ b/source/net/sourceforge/filebot/WebServices.java @@ -26,7 +26,7 @@ public final class WebServices { // episode dbs public static final TVRageClient TVRage = new TVRageClient(); - public static final AnidbClient AniDB = new AnidbClient("filebot", 1); + public static final AnidbClient AniDB = new AnidbClient(getApplicationName().toLowerCase(), 2); public static final IMDbClient IMDb = new IMDbClient(); public static final TheTVDBClient TheTVDB = new TheTVDBClient(getApplicationProperty("thetvdb.apikey")); public static final SerienjunkiesClient Serienjunkies = new SerienjunkiesClient(getApplicationProperty("serienjunkies.apikey"));