From bc53307e8ad4a8668c9b4a3b52d498b7ea37fc90 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Sun, 18 Nov 2012 19:13:47 +0000 Subject: [PATCH] * switch API url to http://api.fanart.tv --- source/net/sourceforge/filebot/web/FanartTV.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/sourceforge/filebot/web/FanartTV.java b/source/net/sourceforge/filebot/web/FanartTV.java index 44b89691..6a5a25a9 100644 --- a/source/net/sourceforge/filebot/web/FanartTV.java +++ b/source/net/sourceforge/filebot/web/FanartTV.java @@ -96,7 +96,7 @@ public class FanartTV { public String getResource(String category, String id, String format, String type, int sort, int limit) throws MalformedURLException { // e.g. http://fanart.tv/webservice/series/780b986b22c35e6f7a134a2f392c2deb/70327/xml/all/1/2 - return String.format("http://fanart.tv/webservice/%s/%s/%s/%s/%s/%s/%s", category, apikey, id, format, type, sort, limit); + return String.format("http://api.fanart.tv/webservice/%s/%s/%s/%s/%s/%s/%s", category, apikey, id, format, type, sort, limit); }