All fragments using Nucleus

This commit is contained in:
inorichi
2015-10-17 16:28:35 +02:00
parent 8c0994747f
commit b36aa69a67
11 changed files with 74 additions and 85 deletions
@@ -37,7 +37,7 @@ public class MangaHere extends Source {
return NAME;
}
public int getSource() {
public int getSourceId() {
return SourceManager.MANGAHERE;
}
@@ -112,7 +112,7 @@ public class MangaHere extends Source {
private Manga constructMangaFromHtmlBlock(Element htmlBlock) {
Manga mangaFromHtmlBlock = new Manga();
mangaFromHtmlBlock.source = getSource();
mangaFromHtmlBlock.source = getSourceId();
Element urlElement = htmlBlock.select("a.manga_info").first();
Element nameElement = htmlBlock.select("a.manga_info").first();