diff --git a/source/net/filebot/web/TMDbClient.java b/source/net/filebot/web/TMDbClient.java index 2ffc07ac..c8e7840d 100644 --- a/source/net/filebot/web/TMDbClient.java +++ b/source/net/filebot/web/TMDbClient.java @@ -203,7 +203,10 @@ public class TMDbClient implements MovieIdentificationService { List genres = new ArrayList(); for (JSONObject it : jsonList(response.get("genres"))) { - genres.add((String) it.get("name")); + String name = (String) it.get("name"); + if (name != null && name.length() > 0) { + genres.add(name); + } } List spokenLanguages = new ArrayList(); diff --git a/website/index.html b/website/index.html index 6cfdb3f4..18361f56 100644 --- a/website/index.html +++ b/website/index.html @@ -248,6 +248,7 @@
  • µTorrent Integration for Windows
  • Transmission Integration for Mac
  • Deluge Integration for Linux
  • +
  • rTorrent Integration for any Linux server
  • Console tool for arbitrary use on any platform
  • If you have any questions or problems just to check the FAQ or search the forums.