* update anidb client identification

This commit is contained in:
Reinhard Pointner 2014-08-08 16:45:23 +00:00
parent a35aa77bb8
commit fedd10f687
2 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,9 @@ apikey.tvrage: 5AhRvLfKAP10unE9Vnfr
apikey.themoviedb: 66308fb6e3fd850dde4c7d21df2e8306 apikey.themoviedb: 66308fb6e3fd850dde4c7d21df2e8306
apikey.fanart.tv: 780b986b22c35e6f7a134a2f392c2deb apikey.fanart.tv: 780b986b22c35e6f7a134a2f392c2deb
apikey.acoustid: 0B3qZnQc apikey.acoustid: 0B3qZnQc
apikey.anidb: filebot
# api keys used by the appstore distribution # api keys used by the appstore distribution
apikey.private.thetvdb: 5F6E873A88CF70D9 apikey.private.thetvdb: 5F6E873A88CF70D9
apikey.private.tvrage: mugksCbTg35PLBIhCXdG apikey.private.tvrage: mugksCbTg35PLBIhCXdG
apikey.private.anidb: filebotappstore

View File

@ -48,7 +48,7 @@ public final class WebServices {
// episode dbs // episode dbs
public static final TVRageClient TVRage = new TVRageClient(getApiKey("tvrage")); public static final TVRageClient TVRage = new TVRageClient(getApiKey("tvrage"));
public static final AnidbClient AniDB = new AnidbClientWithLocalSearch(getApplicationName().toLowerCase(), 5); public static final AnidbClient AniDB = new AnidbClientWithLocalSearch(getApiKey("anidb"), 6);
// extended TheTVDB module with local search // extended TheTVDB module with local search
public static final TheTVDBClientWithLocalSearch TheTVDB = new TheTVDBClientWithLocalSearch(getApiKey("thetvdb")); public static final TheTVDBClientWithLocalSearch TheTVDB = new TheTVDBClientWithLocalSearch(getApiKey("thetvdb"));