mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-10 11:25:04 -05:00
* fixfix
This commit is contained in:
parent
8bb271fb5a
commit
af6d3e0d95
@ -203,7 +203,10 @@ public class TMDbClient implements MovieIdentificationService {
|
|||||||
|
|
||||||
List<String> genres = new ArrayList<String>();
|
List<String> genres = new ArrayList<String>();
|
||||||
for (JSONObject it : jsonList(response.get("genres"))) {
|
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<String> spokenLanguages = new ArrayList<String>();
|
List<String> spokenLanguages = new ArrayList<String>();
|
||||||
|
@ -248,6 +248,7 @@
|
|||||||
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=215#p1561" target="_blank">µTorrent Integration for Windows</a></li>
|
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=215#p1561" target="_blank">µTorrent Integration for Windows</a></li>
|
||||||
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=520#p3470" target="_blank">Transmission Integration for Mac</a></li>
|
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=520#p3470" target="_blank">Transmission Integration for Mac</a></li>
|
||||||
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=215#p3382" target="_blank">Deluge Integration for Linux</a></li>
|
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=215#p3382" target="_blank">Deluge Integration for Linux</a></li>
|
||||||
|
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=215#p5316" target="_blank">rTorrent Integration for any Linux server</a></li>
|
||||||
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=215" target="_blank">Console tool for arbitrary use on any platform</a></li>
|
<li><a href="http://www.filebot.net/forums/viewtopic.php?f=4&t=215" target="_blank">Console tool for arbitrary use on any platform</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>If you have any questions or problems just to check the <a href="http://www.filebot.net/forums/viewtopic.php?f=3&t=7">FAQ</a> or search the <a href="http://www.filebot.net/forums/">forums</a>.</p>
|
<p>If you have any questions or problems just to check the <a href="http://www.filebot.net/forums/viewtopic.php?f=3&t=7">FAQ</a> or search the <a href="http://www.filebot.net/forums/">forums</a>.</p>
|
||||||
|
Loading…
Reference in New Issue
Block a user