Exclude novels from MAL. Fix #19

This commit is contained in:
inorichi 2016-01-14 20:50:14 +01:00
parent 24a0a3b96f
commit 1c465a6e59

View File

@ -105,6 +105,7 @@ public class MyAnimeList extends MangaSyncService {
return networkService.getStringResponse(getSearchUrl(query), headers, null)
.map(Jsoup::parse)
.flatMap(doc -> Observable.from(doc.select("entry")))
.filter(entry -> !entry.select("type").text().equals("Novel"))
.map(entry -> {
MangaSync manga = MangaSync.create(this);
manga.title = entry.select("title").first().text();