From fedd10f6878b2ed7e6d592331e424909a316120c Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Fri, 8 Aug 2014 16:45:23 +0000 Subject: [PATCH] * update anidb client identification --- source/net/filebot/Settings.properties | 2 ++ source/net/filebot/WebServices.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/source/net/filebot/Settings.properties b/source/net/filebot/Settings.properties index b1ef1c77..4ae4c16c 100644 --- a/source/net/filebot/Settings.properties +++ b/source/net/filebot/Settings.properties @@ -20,7 +20,9 @@ apikey.tvrage: 5AhRvLfKAP10unE9Vnfr apikey.themoviedb: 66308fb6e3fd850dde4c7d21df2e8306 apikey.fanart.tv: 780b986b22c35e6f7a134a2f392c2deb apikey.acoustid: 0B3qZnQc +apikey.anidb: filebot # api keys used by the appstore distribution apikey.private.thetvdb: 5F6E873A88CF70D9 apikey.private.tvrage: mugksCbTg35PLBIhCXdG +apikey.private.anidb: filebotappstore diff --git a/source/net/filebot/WebServices.java b/source/net/filebot/WebServices.java index 06ecbc90..1e91ac25 100644 --- a/source/net/filebot/WebServices.java +++ b/source/net/filebot/WebServices.java @@ -48,7 +48,7 @@ public final class WebServices { // episode dbs 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 public static final TheTVDBClientWithLocalSearch TheTVDB = new TheTVDBClientWithLocalSearch(getApiKey("thetvdb"));